如何在 C# 中为 winforms 自定义控件设置动画而不闪烁?

发布于 10-06 18:23 字数 91 浏览 4 评论 0原文

我正在寻找一些有关如何为 winforms 自定义控件设置动画的帮助,动画是简单的淡入淡出或类似手风琴风格的动画。

您能否建议与此相关的任何文章或代码。

I am looking for some help on how to animate a winforms custom control, the animations are simple fade-in fadeout or something a like an accordion style animation.

Can you please suggest any articles or code related to this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

压抑⊿情绪2024-10-13 18:23:29

它称为 DoubleBuffer 属性(MS 文档)。

这是一个示例

It's called the DoubleBuffer property (MS documentation).

Here's an example.

╰つ倒转2024-10-13 18:23:29

是的,使用 DoubleBuffer。我记得有几个提示

  • 除了在控件的绘制方法中将后台缓冲区复制到控件之外,不要执行任何操作。

    除了

  • 在独立线程中处理控件的刷新。

  • 不要从任何修改控件的事件处理程序中调用刷新! :)

Yep, use DoubleBuffer. A couple of tips I remember picking up:

  • Don't do anything other than copy a back buffer to the control in the control's paint method.

  • Handle refresh of the control in an independent thread.

  • Don't call refresh from any event handlers that modify the control! :)

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