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?
|
feedback
|
|
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. And to whom it may concern, this is similar example in VB:
| |||||||||||||||||||||
feedback
|
|
The following is the same solution of ng5000 but doesn't use P/Invoke.
| |||
|
feedback
|
|
I usually use a little modified version of ngLink' answer.
This allows suspend/resume calls to be nested. You must make sure to match each | |||
|
feedback
|
|
A nice solution without using interop: As always, simply enable DoubleBuffered=true on your CustomControl. Then, if you have any containers like FlowLayoutPanel or TableLayoutPanel, derive a class from each of these types and in the constructors, enable double buffering. Now, simply use your derived Containers instead of the Windows.Forms Containers.
| |||||||||
feedback
|