20 references to Children
System.Windows.Forms (20)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (4)
198public int ChildCount => Children.Count; 526return new GridItemCollection(Children); 678foreach (GridEntry child in Children) 1169internal int GetChildIndex(GridEntry entry) => Children.IndexOf(entry);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
137bool expandable = Children.Count > 0;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.cs (1)
74bool expandable = Children.Count > 0;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObject.cs (2)
86return owner.Children[index].AccessibilityObject; 222foreach (GridEntry childEntry in owner.Children)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (6)
1843GridEntryCollection childEntries = currentEntry.Children; 2766SelectGridEntry(entry.Children[0], pageIn: true); 3548GridEntryCollection children = parent.Children; 3937GridEntryCollection children = gridEntry.Children; 4143expandedItems.Add(GetGridEntryHierarchy(entry.Children[0])); 4144SaveHierarchyState(entry.Children, expandedItems);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.PropertyGridViewAccessibleObject.cs (4)
182AccessibleObject? foundChild = GetPreviousGridEntry(currentGridEntry, gridEntry.Children, out currentGridEntryFound); 231AccessibleObject? foundChild = GetNextGridEntry(currentGridEntry, gridEntry.Children, out currentGridEntryFound); 260GridEntryCollection subGridEntry = current.Children; 291GridEntryCollection subGridEntry = current.Children;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (2)
243if (Children.Count == 0 || (_propertySort & PropertySort.Categorized) == 0) 251foreach (var child in Children)