System.Windows.Forms.TreeNode_Old.UpdateContent C# (CSharp) Method

UpdateContent() private method

private UpdateContent ( ) : void
return void
        internal void UpdateContent()
        {
            if (_text != "") Text = _text;
        }

Usage Example

Example #1
0
 public void AddNode(TreeNode_Old node)
 {
     Nodes.Add(node);
     node.Index  = Nodes.Count;
     node.Parent = this;
     //if (node.Self == null && node.CreateGO)
     //    node.Self = node.CreateNode();
     node.UpdateContent();
 }
All Usage Examples Of System.Windows.Forms.TreeNode_Old::UpdateContent