减少.NET FlowLayoutPanel的闪烁

发布于 2024-09-13 07:30:30 字数 112 浏览 4 评论 0原文

我每隔几秒就会清除多个 LinkLabel 并将其添加到 FlowLayoutPanel 中。它工作正常,但闪烁非常明显。有什么办法可以减少吗?我尝试设置 Form.DoubleBuffering,但没有帮助。

I'm clearing and adding multiple LinkLabel's to FlowLayoutPanel, every couple of seconds. It works fine, but flicker is quite noticeable. Is there any way to reduce it? I tried to set Form.DoubleBuffering, it didn't help.

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

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

发布评论

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

评论(2

俏︾媚 2024-09-20 07:30:30

通过创建派生自 FlowLayoutPanel 的自定义控件并设置其样式进行管理,如下所示:

公共类CustomFlowLayoutPanel
继承FlowLayoutPanel

公共子新建()
    MyBase.New()

    SetStyle(ControlStyles.UserPaint, True)
    SetStyle(ControlStyles.AllPaintingInWmPaint, True)
    SetStyle(ControlStyles.DoubleBuffer, True)

结束子

下课

Managed by creating a custom control derived from FlowLayoutPanel and setting its styles as shown below:

Public Class CustomFlowLayoutPanel
Inherits FlowLayoutPanel

Public Sub New()
    MyBase.New()

    SetStyle(ControlStyles.UserPaint, True)
    SetStyle(ControlStyles.AllPaintingInWmPaint, True)
    SetStyle(ControlStyles.DoubleBuffer, True)

End Sub

End Class

小…红帽 2024-09-20 07:30:30

在向面板添加控件之前尝试调用面板的 SuspendLayout(),然后在面板上调用 ResumeLayout()。你可能会失去一点闪烁。

Try calling SuspendLayout() for the panel before adding controls to it and then call ResumeLayout() on the Panel. You may lose that flicker a bit.

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