[RESOLVED] [2.0] Equivalence of ListView.BeginUpdate() for other controls
Is there a similar function in the Control or UserControl class to prevent the control from painting such as the ListView.BeginUpdate() and ListView.EndUpdate()?
I have a UserControl inherited class that loads a bunch of controls and I'd like it not to display until the loading is done.
Re: [2.0] Equivalence of ListView.BeginUpdate() for other controls
Oh, and setting DoubledBuffered to true doesn't help in case you're going to suggest that.
Re: [2.0] Equivalence of ListView.BeginUpdate() for other controls
Re: [2.0] Equivalence of ListView.BeginUpdate() for other controls
Quote:
Originally Posted by mendhak
ugh! I can't believe MS has once again reduced us to raw winAPI calls.
I actually just hide the parent control, add all of the child controls, then show the parent control again.