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.
我有一个类似于 android 通知抽屉类型的表单,用户可以选择在表单上放置背景图像;由于表单通过用鼠标拉到屏幕上一直打开,我怎样才能使位图在被拉到屏幕上时看起来像没有绘制?我正在使用 C#.net。当窗体被拉起时,位图是白色的,直到它有一秒钟可以加载。
您可以尝试将表单设置为在双缓冲模式下进行绘制。
class Form1 : Form { Form1(){ this.doublebuffered = true; } }
如何在表单上加倍缓冲 .NET 控件?