ZForge.Controls.TreeViewAdv.Tree.TreeViewAdv.FullUpdate C# (CSharp) Method

FullUpdate() public method

public FullUpdate ( ) : void
return void
        public void FullUpdate()
        {
            if (InvokeRequired)
                Invoke(new MethodInvoker(UnsafeFullUpdate));
            else
                UnsafeFullUpdate();
        }

Usage Example

Beispiel #1
0
 void IsVisibleChanged(object sender, EventArgs e)
 {
     _treeView.FullUpdate();
 }
TreeViewAdv