Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 WPF 中,我希望能够添加两个动画,例如 XAML 中的一个按钮,我让它在单击按钮时动画一次,是否可以在再次单击它时运行另一个动画?
谢谢
是的,有可能。第一个动画必须在此之前结束。只需在 firstAnimation.Completed 事件触发后调用 button.BeginAnimation(anotherAnimation) 即可。