且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

调整的C#Windows窗体时防止窗口重绘

更新时间:2023-02-05 17:36:10

没关系,只是发现这两个事件

Nevermind, just found these two events.

this.ResizeBegin += (s, e) => { this.SuspendLayout(); };
this.ResizeEnd += (s, e) => { this.ResumeLayout(true); };

作品请客