C++实现WPF动画的具体操作方法
本篇文章为大家展示了C++实现WPF动画的具体操作方法,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
C++编程语言的应方式非常广泛,可以帮助我们轻松的实现许多功能需求。
很多人都习惯使用Blend来帮助编辑XAML文件,生成很多动画。但在实际开发中,用代码来实现动画还是很实用的,而且代码的逻辑开发能力更强,更容易控制,这方面C#的例子已经很多了,下面我介绍几个C++实现WPF动画的例子。
首先介绍少渐隐渐现,也就是Alpha Animation。C++实现WPF动画代码如下
// 1, Find the lable by its name, The name define in the xaml file
Label^ pColorLabel = (Label^)page->FindName("ColorAnimationLabel");
// 2, Define a DoubleAnimation object
DoubleAnimation^ pDoubleAnimation = gcnew DoubleAnimation();
// 3, Set from to and duration
pDoubleAnimation->From = 1;
pDoubleAnimation->To = 0;
pDoubleAnimation->DurationDuration = Duration(TimeSpan::FromSeconds(3));
// 4, Create a storyboard(Timeline)
Storyboard^ pStoryboard = gcnew Storyboard();
// 5, Set the DoubleAnimation's target name
pStoryboard->SetTargetName(pDoubleAnimation, _T("ColorAnimationLabel"));
// 6, Set the DoubleAnimation's property
pStoryboard->SetTargetProperty(pDoubleAnimation,
gcnew PropertyPath(Label::OpacityProperty));
// 7, Add the DoubleAnimation object to the storyboard
pStoryboard->Children->Add(pDoubleAnimation);
// 8, Start the animation
pStoryboard->Begin(pColorLabel);
上面C++实现WPF动画代码所用的XAML如下
< Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
< Grid>
< DockPanel>
< Button Name="ColorAnmationButton" Width="100" Height="50"
Background="LightBlue">Color Anmation< /Button>
< Label Name="ColorAnimationLabel" Width="200"
Height="50" Background="Red">
< /Label>
< /DockPanel>
< /Grid>
< /Page>
上述内容就是C++实现WPF动画的具体操作方法,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注编程网行业资讯频道。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341