Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么在我的表单的 OnLoad 中,当我设置背景图像时我的表单会闪烁?
这是因为它正在重新绘制。重绘首先清除背景,然后在其上绘制图像。这会导致闪烁。
您可以在表单上激活双缓冲来消除此问题:
this.DoubleBuffered = true;