您好,登錄后才能下訂單哦!
本篇文章為大家展示了C++實現WPF動畫的具體操作方法,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
C++編程語言的應方式非常廣泛,可以幫助我們輕松的實現許多功能需求。
很多人都習慣使用Blend來幫助編輯XAML文件,生成很多動畫。但在實際開發中,用代碼來實現動畫還是很實用的,而且代碼的邏輯開發能力更強,更容易控制,這方面C#的例子已經很多了,下面我介紹幾個C++實現WPF動畫的例子。
首先介紹少漸隱漸現,也就是Alpha Animation。C++實現WPF動畫代碼如下
/**//*
* Take Label for example
*/
// 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動畫的具體操作方法,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。