wpf 中用 C# 代码创建 PropertyPath ,以对间接目标进行 Storyboard 动画.
2020-12-29 22:27
标签:故事 rectangle end direct wpf add object 图片 route 如图,一个 Rectangle 一个 Button ,点击按钮时要通过动画完成对 Rectangle填充色的渐变动画. Xaml: C# 知识来源:https://docs.microsoft.com/zh-cn/dotnet/framework/wpf/graphics-multimedia/storyboards-overview#indirect-targeting wpf 中用 C# 代码创建 PropertyPath ,以对间接目标进行 Storyboard 动画. 标签:故事 rectangle end direct wpf add object 图片 route 原文地址:https://www.cnblogs.com/8u7tgyjire7890/p/13281952.html 1 Window
2 x:Class="WpfApp1.MainWindow"
3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7 Title="MainWindow"
8 Width="400"
9 Height="250"
10 mc:Ignorable="d">
11 Grid>
12 Grid.RowDefinitions>
13 RowDefinition />
14 RowDefinition />
15 Grid.RowDefinitions>
16
17
18
19
20
21 Rectangle
22 x:Name="TheRectangle"
23 Width="150"
24 Height="50"
25 Fill="Aqua" />
26
27 Button
28 Grid.Row="1"
29 Width="150"
30 Height="50"
31 Click="ButtonBase_OnClick">
32 开始动画
33 Button>
34 Grid>
35 Window>
1 using System;
2 using System.Windows;
3 using System.Windows.Media;
4 using System.Windows.Media.Animation;
5 using System.Windows.Shapes;
6
7 namespace WpfApp1
8 {
9 ///
下一篇:C#使用委托实现异步编程
文章标题:wpf 中用 C# 代码创建 PropertyPath ,以对间接目标进行 Storyboard 动画.
文章链接:http://soscw.com/index.php/essay/39142.html