包含 PictureBox 的面板在背景更改时闪烁。我怎样才能消除这个问题?

发布于 2024-11-07 15:24:38 字数 309 浏览 0 评论 0原文

我有一个带有背景图像集的面板,我将其用作按钮。该面板还包含一个 PictureBox,其中加载了 png 图像,以便图像的某些部分是透明的并且面板图像可以透过。在 MouseDown 上我更改了面板背景图像,然后在 MouseUp 上我再次将其更改回来。问题是,当面板图像发生变化时,PictureBox 在重新绘制其透明区域时会严重闪烁。

我尝试使用其 on 形式的 DoubleBuffered 属性;那里没有运气。我还在更改图像之前尝试过 SuspendLayout,刷新 PictureBox,然后 ResumeLayout。还是没有运气。

预先感谢您的任何想法。

I have a panel with the BackgroundImage set that I'm using as a button. The panel also contains a PictureBox with a png image loaded so that parts of the image are transparent and the panel image shows through. On MouseDown I change the panels BackgroundImage, then on MouseUp I change it back again. The problem is that when the panel image changes, the PictureBox flickers badly when redrawing its transparent areas.

I've tried using the DoubleBuffered property of the form its on; no luck there. I've also tried SuspendLayout just before changing the image, refreshing the PictureBox, then ResumeLayout. Still no luck.

Thanks in advance for any ideas.

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

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

发布评论

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

评论(1

孤独患者 2024-11-14 15:24:38

这是VS在图形方面不好的地方。尝试使用 Form BackgroundImage 属性,或重写 OnPaint 事件并使用 Graphics 类手动绘制图像(在 Form 上绘制)。

It's the bad part of VS in graphic. Try using Form BackgroundImage property, or overrides OnPaint event and use Graphics class to draw the image manually (draw on the Form).

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