1 write to owner
System.Windows.Forms (1)
winforms\Managed\System\WinForms\TreeNodeCollection.cs (1)
42this.owner = owner;
30 references to owner
System.Windows.Forms (30)
winforms\Managed\System\WinForms\TreeNodeCollection.cs (30)
64if (index < 0 || index >= owner.childCount) { 67return owner.children[index]; 70if (index < 0 || index >= owner.childCount) 72value.parent = owner; 74owner.children[index] = value; 125return owner.childCount; 246TreeView tv = owner.TreeView; 250owner.Nodes.FixedIndex = owner.childCount; 251owner.EnsureCapacity(nodes.Length); 255owner.Nodes.FixedIndex = -1; 326TreeView tv = owner.TreeView; 328return owner.AddSorted(node); 330node.parent = owner; 331int fixedIndex = owner.Nodes.FixedIndex; 338owner.EnsureCapacity(1); 339node.index = owner.childCount; 341owner.children[node.index] = node; 342owner.childCount++; 464TreeView tv = owner.TreeView; 466owner.AddSorted(node); 471if (index > owner.childCount) index = owner.childCount; 472owner.InsertNodeAt(index, node); 573owner.Clear(); 581if (owner.childCount > 0) { 582System.Array.Copy(owner.children, 0, dest, index, owner.childCount); 627return new WindowsFormsUtils.ArraySubsetEnumerator(owner.children, owner.childCount);