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.
在我的 Winforms 应用程序中,我想发送一个 Paint 请求。
我应该使用哪种方法?Invalidate另外,和之间的基本区别是OnPaint什么?
Invalidate
OnPaint
OnPaint 是实际绘画发生的方法。
无效是请求重新绘制控件或表单的一种方式。
Control.Invalidate、Control.Update 和 Control.Refresh 有什么区别?