27 references to Children
System.Windows.Forms (27)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
4740currentPropEntries = peMain.Children;
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (4)
329if (Children != null) { 330return Children.Count; 636return this.Children; 1380return this.Children.GetEntry(pe);
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
119bool fExpandable = this.Children.Count > 0;
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (1)
72bool fExpandable = this.Children.Count > 0;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (2)
1076return _owningPropertyDescriptorGridEntry.Children.GetEntry(0).AccessibilityObject; 1097return _owningPropertyDescriptorGridEntry.Children
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (13)
1085cProps += CountPropsFromOutline(((GridEntry)rgipes[i]).Children); 1240GridEntryCollection children = entry.Children; 2102GridEntryCollection subGridEntry = ipeCur.Children; 2972GridEntryCollection rgipes2 = gridEntry.Children; 3746GridEntryCollection children = parent.Children; 4061GridEntryCollection rgipes = gridEntry.Children; 4251expandedItems.Add(GetGridEntryHierarchy(entry.Children.GetEntry(0))); 4252SaveHierarchyState(entry.Children, expandedItems); 5433foreach (GridEntry ent in entry.Children) { 7517var foundChild = GetPreviousGridEntry(currentGridEntry, gridEntry.Children, out currentGridEntryFound); 7554var foundChild = GetNextGridEntry(currentGridEntry, gridEntry.Children, out currentGridEntryFound); 7576GridEntryCollection subGridEntry = current.Children; 7600GridEntryCollection subGridEntry = current.Children;
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (5)
106if (!same && Children != null && Children.Count > 0) { 299if (Children.Count > 0) { 301GridEntry[] childEntries = new GridEntry[this.Children.Count]; 302this.Children.CopyTo(childEntries, 0);