本文介绍了双重动画后更改控件的属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨...

我已使用DoubleAnimation Panal 的宽度从24增加到240,持续了一秒钟,我想设置其宽度(240-24),即216,但是我无法做到这一点.谁能告诉我如何实现这一目标.代码在下面给出...

 .RegisterName(LeftPanel.Name,LeftPanel);
           DoubleAnimation dbani =  DoubleAnimation();
           dbani.From =  24 ;
           dbani.To =  240 ;
           dbani.Duration = 持续时间(TimeSpan.FromSeconds( 1 ));
           Storyboard.SetTargetName(dbani,LeftPanel.Name);
           Storyboard.SetTargetProperty(dbani, PropertyPath(Border.WidthProperty));
           情节提要myWidthAnimatedButtonStoryboard = 情节提要();
           myWidthAnimatedButtonStoryboard.Children.Add(dbani);
           myWidthAnimatedButtonStoryboard.Begin(LeftPanel);
           LeftPanel.width =  216 ;



谢谢...

解决方案


这篇关于双重动画后更改控件的属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-27 08:11