C# Panel.BackgroundImage +透明控件=闪烁?
我有一个带有 jpg BackgroundImage
的 Panel
(带有 BackgroundImageLayout = Stretch
)。 在面板的 Controls
上,我添加了一些带有透明边框的 PNG 的 PictureBoxes
。显示它不会产生任何问题,但移动(框可拖动)PictureBoxes
会产生任何问题。
结果是移动的 PictureBox
会“干扰”BackgroundImage
并降低性能。拖动框的速度越快,它对 BackgroundImage
的干扰就越大,反之亦然。
如何解决这个问题呢?
I've got a Panel
with a jpg BackgroundImage
(with BackgroundImageLayout = Stretch
).
On the panel it's Controls
I add some PictureBoxes
with a PNG which has transparent borders. Displaying this doesn't give any problems, but moving (the boxes are draggable) the PictureBoxes
does.
The result is that the moving PictureBox
"disturbs" the BackgroundImage
and slows down performance. The faster I drag the box, the more it disturbs the BackgroundImage
, and vice versa.
How to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个:http://msdn.microsoft.com/en-us/ library/b367a457.aspx
您所需要做的就是使用表单上的属性打开双缓冲。
Check this out: http://msdn.microsoft.com/en-us/library/b367a457.aspx
All you need to do is turn double-buffering on using the property on the Form.