I have a control which I have to make large modifications to. I'd like to completely prevent it from redrawing while I do that - SuspendLayout and ResumeLayout aren't enough. How do I suspend painting for a control and its children?
|
|
At my previous job we struggled with getting our rich UI app to paint instantly and smoothly. We were using standard .Net controls, custom controls and devexpress controls. After a lot of googling and reflector usage I came across the WM_SETREDRAW win32 message. This really stops controls drawing whilst you update them and can be applied, IIRC to the parent/containing panel. This is a very very simple class demonstrating how to use this message:
There are fuller discussions on this - google for C# and WM_SETREDRAW, e.g. |
||||||||
|
|
|
Wow! Super!! I increased the performance of the control by 2 or 3! Thanks!! |
||
|
|
|
|
BeginUpdate / EndUpdate ? |
||
|
