WPF动画结束时是否会触发任何事件?voidHideDefaultScreenImageTimer_Tick(objectsender,EventArgse){HideDefaultScreenImageTimer.Stop();vardoubleAnimation=newDoubleAnimation(1,0,newDuration(TimeSpan.FromSeconds(0.45)));DefaultScreenImage.BeginAnimation(UIElement.OpacityProperty,doubleAnimation);//Ineedsomeeventwhena
我正在学习wpf,同时用它开发应用程序。我很难弄清楚如何在双动画(或其他类型)完成后运行某些东西。例如:DoubleAnimationmyanim=newDoubleAnimation();myanim.From=10;myanim.To=100;myanim.Duration=newDuration(TimeSpan.FromSeconds(3));myview.BeginAnimation(Button.OpacityPropert,myanim);//CodetodosomethingwhenanimationendsusingSystem;usingSystem.Collect
以下代码在Silverlight中运行良好:privatevoidButton_Click_1(objectsender,RoutedEventArgse){Storyboardstoryboard=newStoryboard();DoubleAnimationdoubleAnimation=newDoubleAnimation();doubleAnimation.From=50;doubleAnimation.To=100;doubleAnimation.RepeatBehavior=RepeatBehavior.Forever;doubleAnimation.AutoReverse