I have written a UserControl that behaves like a ContainerControl, but is totally painted by WindowsForms (I inherit from UserControl)
I would like to avoid painting the control while I'm filling it, so I would need to write something similar to BeginUpdate() - EndUpdate().
This is easy to do when the control is user-painted, but in this case I'm not sure about how to proceed.