What windows message or event can i listen to in order to stop a window from being redrawing every pixel of it\'s resize?
That is, when a user clicks on the edge of
Nevermind, just found these two events.
this.ResizeBegin += (s, e) => { this.SuspendLayout(); }; this.ResizeEnd += (s, e) => { this.ResumeLayout(true); };
Works a treat