博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用path制作各类型动画路径
阅读量:6095 次
发布时间:2019-06-20

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

原文:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;namespace 使用path制作各类型动画路径{    ///     /// MainWindow.xaml 的交互逻辑    ///     public partial class MainWindow : Window    {        public MainWindow()        {            InitializeComponent();        }        private void button1_Click(object sender, RoutedEventArgs e)        {            //设置红色椭圆的Storyboard中"MatrixAnimationUsingPath"的PathGeometry            PathGeometry pg = new PathGeometry();            pg.AddGeometry(elipsGeome);                     matUsePath.PathGeometry = pg;            //ellipse1 开始绕椭圆路径旋转            sb1.Begin(ellipse1);        }    }}

源代码下载:

转载地址:http://kvwza.baihongyu.com/

你可能感兴趣的文章
数据库运维平台~自动化上线审核需求
查看>>
注解开发
查看>>
如何用 Robotframework 来编写优秀的测试用例
查看>>
Django之FBV与CBV
查看>>
Vue之项目搭建
查看>>
app内部H5测试点总结
查看>>
Docker - 创建支持SSH服务的容器镜像
查看>>
[TC13761]Mutalisk
查看>>
三级菜单
查看>>
Data Wrangling文摘:Non-tidy-data
查看>>
加解密算法、消息摘要、消息认证技术、数字签名与公钥证书
查看>>
while()
查看>>
常用限制input的方法
查看>>
Ext Js简单事件处理和对象作用域
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
12.通过微信小程序端访问企查查(采集工商信息)
查看>>
WinXp 开机登录密码
查看>>
POJ 1001 Exponentiation
查看>>
HDU 4377 Sub Sequence[串构造]
查看>>
云时代架构阅读笔记之四
查看>>