如何在 WPF 中执行图像的动画旋转?

发布于 2024-08-20 16:27:58 字数 82 浏览 7 评论 0原文

我刚刚开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风柔一江水 2024-08-27 16:27:58

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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文