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. And to whom it may concern, this is similar example in VB:
|
|||||||||||||||||||||
|
|
The following is the same solution of ng5000 but doesn't use P/Invoke.
|
|||||
|
|
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 |
||||
|
|
|
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.
|
|||||||||
|
|
Here is a combination of ceztko's and ng5000's to bring a VB extensions version that doesn't use pinvoke
|
|||
|
|
Shaved a second off of a one minute (well 54 seconds, so down to 53) so it did help, but looks like that is simply a bottle neck I am going to have to live with. I am even using AddRange instead of lots of Adds, control list with predefined size etc. etc. Threading has been liberally applied as well to take advantage of multiple cores, each controls's paint event is threaded for loading data. Basically everything I could think of. Next step is to implement a form of lazy loading, so while the application is responsive it is still loading stuff in the background as needed (or preferably slightly before needed). If you are wondering why I am loading so many controls (5000+) it's because that's what I want the app to do. Hell I want it to load twice what I am throwing at it now. My i7 barely breaks a sweat loading all that data, plus most of the data is cached on SSD, so I am wondering if my bottleneck is graphics? |
|||
|
|