如何在 WPF 中执行图像的动画旋转?
我刚刚开始使用 WPF。我想在单击按钮时旋转图像,但我不希望图像在瞬间旋转。我希望用户看到图像一次旋转一度。在 C# 中执行此操作最简单的方法是什么?
I am just starting out using WPF. I want to rotate an image when i click a button but I don't want the image to rotate in one instant rotation. I want the use to see the image rotate one degree at a time. What is the easiest way to do this in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 RotateTransform 应用于图像,使用其初始 角度 设置为 0然后以正常方式为变换的 Angle 属性设置动画。
如果您特别想要离散旋转,其中旋转明显单击一度跳跃,请使用 DoubleAnimationUsingKeyFrames 而不是普通的 DoubleAnimation,并使每个关键帧成为 DiscreteDoubleKeyFrame。 (在这种情况下,您可能希望以编程方式生成故事板,因为您将有很多关键帧。)
Apply a RotateTransform to the Image, with its initial Angle set to 0. Then animate the transform's Angle property in the normal way.
If you specifically want a discrete rotation, where the rotation visibly clicks over in one-degree jumps, use a DoubleAnimationUsingKeyFrames instead of a normal DoubleAnimation, and make each key frame a DiscreteDoubleKeyFrame. (You'll probably want to generate the storyboard programmatically in this case because you'll have a lot of key frames.)