91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++實現WPF動畫的具體操作方法

發布時間:2021-10-27 18:46:25 來源:億速云 閱讀:185 作者:柒染 欄目:編程語言

本篇文章為大家展示了C++實現WPF動畫的具體操作方法,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

C++編程語言的應方式非常廣泛,可以幫助我們輕松的實現許多功能需求。

很多人都習慣使用Blend來幫助編輯XAML文件,生成很多動畫。但在實際開發中,用代碼來實現動畫還是很實用的,而且代碼的邏輯開發能力更強,更容易控制,這方面C#的例子已經很多了,下面我介紹幾個C++實現WPF動畫的例子。

首先介紹少漸隱漸現,也就是Alpha Animation。C++實現WPF動畫代碼如下

  1. /**//*  

  2. * Take Label for example  

  3. */  

  4. // 1, Find the lable by its name, The name define in the xaml file  

  5. Label^ pColorLabel = (Label^)page->FindName("ColorAnimationLabel");  

  6. // 2, Define a DoubleAnimation object  

  7. DoubleAnimation^ pDoubleAnimation = gcnew DoubleAnimation();  

  8. // 3, Set from to and duration  

  9. pDoubleAnimation->From = 1;  

  10. pDoubleAnimation->To = 0;  

  11. pDoubleAnimation->DurationDuration = Duration(TimeSpan::FromSeconds(3));  

  12. // 4, Create a storyboard(Timeline)  

  13. Storyboard^ pStoryboard = gcnew Storyboard();  

  14. // 5, Set the DoubleAnimation's target name  

  15. pStoryboard->SetTargetName(pDoubleAnimation, _T("ColorAnimationLabel"));  

  16. // 6, Set the DoubleAnimation's property  

  17. pStoryboard->SetTargetProperty(pDoubleAnimation, 
    gcnew PropertyPath(Label::OpacityProperty));  

  18. // 7, Add the DoubleAnimation object to the storyboard  

  19. pStoryboard->Children->Add(pDoubleAnimation);  

  20. // 8, Start the animation  

  21. pStoryboard->Begin(pColorLabel); 

上面C++實現WPF動畫代碼所用的XAML如下

  1. < Page 

  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 

  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 

  4. < Grid> 

  5. < DockPanel> 

  6. < Button Name="ColorAnmationButton" Width="100" Height="50" 
    Background="LightBlue">Color Anmation< /Button> 

  7. < Label Name="ColorAnimationLabel" Width="200" 
    Height="50" Background="Red"> 

  8. < /Label> 

  9. < /DockPanel> 

  10. < /Grid> 

  11. < /Page> 

上述內容就是C++實現WPF動畫的具體操作方法,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新河县| 比如县| 邢台县| 大渡口区| 舞钢市| 惠安县| 邯郸县| 博湖县| 勐海县| 宜兴市| 浦江县| 阳泉市| 崇义县| 二连浩特市| 陇南市| 剑河县| 望城县| 开远市| 芮城县| 鄄城县| 辉县市| 南召县| 宁乡县| 邵东县| 浪卡子县| 吉木乃县| 溧阳市| 达拉特旗| 济阳县| 梧州市| 琼结县| 垫江县| 双峰县| 巴彦县| 瑞丽市| 临沧市| 桐庐县| 澎湖县| 全椒县| 囊谦县| 玉环县|