Screen Refreshing

  • Thread starter Thread starter Krzysztof Kazmierczak
  • Start date Start date
K

Krzysztof Kazmierczak

Hi All!

How can i avoid from screen refreshing. I have that
effect when i add some nodes to TreeView control. Is
there something like VB's Screen.Refreshing = false
in .NET CF?

Thanks for any help!
Kind regards
Krzysztof Kazmierczak
 
Take a look at the TreeView.BeginUpdate and TreeView.EndUpdate. These
methods prevent the TreeView control from painting.
 
Back
Top