How can I improve performance when updating my SmartControl?
-
-
Xceed admin
-
-
-
Joined on 09-29-2008
-
Longueuil
-
Posts 443
-
-
|
How can I improve performance when updating my SmartControl?
To prevent painting of SmartControls between updates, you can use the control's SuspendUpdate and ResumeUpdate methods.
smartTreeView.SuspendUpdate();
// Code that updates the SmartControl multiple times.
smartTreeView.ResumeUpdate |
|
|
|
|
|
|