博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DoubleAnimation 故事板
阅读量:6311 次
发布时间:2019-06-22

本文共 874 字,大约阅读时间需要 2 分钟。

hot3.png

前台代码:

<UserControl x:Class="story.MainPage"

    xmlns=""
    xmlns:x="
"
    xmlns:d="
"
    xmlns:mc="
"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">
    <UserControl.Resources >
        <Storyboard x:Name="sb">
            <DoubleAnimation Storyboard.TargetName="rtf" Storyboard.TargetProperty="Angle"  Duration="00:00:03" From="0" To="300"></DoubleAnimation>
        </Storyboard>
    </UserControl.Resources>
        <Grid x:Name="LayoutRoot" Background="White">
        <Image Name="img" Width="300" Height="300" Source="img/9.jpg" Stretch="Uniform"  >
            <Image.RenderTransform >
                <RotateTransform x:Name="rtf"></RotateTransform>
            </Image.RenderTransform>
        </Image>
        <Button Name="btn" Width="100" Height="50" FontSize="24" Content="故事板" Click="btn_Click"></Button>
    </Grid>
</UserControl>

 

我们只需在后台加一句代码就行了:

 private void btn_Click(object sender, RoutedEventArgs e)

        {
            sb.Begin();
        }

原文链接:

转载于:https://my.oschina.net/changpinghu/blog/92564

你可能感兴趣的文章
Scrapy框架实现爬虫
查看>>
sphinx索引分析——文件格式和字典是double array trie 检索树,索引存储 – 多路归并排序,文档id压缩 – Variable Byte Coding...
查看>>
Spring MVC的一些学习笔记-入门配置和HttpMessageConverter
查看>>
RabbitMQ消息队列(二):”Hello, World“
查看>>
Python 图片转字符画
查看>>
USI和USCI的区别
查看>>
Memcached全面剖析–2.理解memcached的内存存储
查看>>
剑指offer三十七之数字在排序数组中出现的次数
查看>>
在Web Service中傳送Dictionary
查看>>
基于阿里云的JavaEE系统框架介绍
查看>>
[翻译] ASP.NET MVC CodePlex Preview 4 Release Notes
查看>>
[随笔] 不能卸,我舍不得。IE8,Beta2的。
查看>>
datasnap 2010 简介
查看>>
MessageBox的用法
查看>>
线程系列07,使用lock语句块或Interlocked类型方法保证自增变量的数据同步
查看>>
.NET基础拾遗(3)字符串、集合和流
查看>>
AngularJS中ui-router全攻略
查看>>
[Big Data - Kafka] Kafka设计解析(二):Kafka High Availability (上)
查看>>
UNIGUI换版本注意事项
查看>>
Atlas UpdatePanel简要介绍
查看>>