1 override of Children
System.Windows.Forms.Tests (1)
System\Windows\Forms\PropertyGridInternal\AccessibleObjects\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObjectTests.cs (1)
178public override GridEntryCollection Children
43 references to Children
System.Windows.Forms (22)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
4189_currentEntries = _rootEntry.Children;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (4)
195public int ChildCount => Children.Count; 520return new GridItemCollection(Children); 672foreach (GridEntry child in Children) 1163internal 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 (7)
926propertyCount += CountPropertiesFromOutline(entries[i].Children); 1843GridEntryCollection childEntries = currentEntry.Children; 2782SelectGridEntry(entry.Children[0], pageIn: true); 3563GridEntryCollection children = parent.Children; 3952GridEntryCollection children = gridEntry.Children; 4158expandedItems.Add(GetGridEntryHierarchy(entry.Children[0])); 4159SaveHierarchyState(entry.Children, expandedItems);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.PropertyGridViewAccessibleObject.cs (4)
181AccessibleObject? foundChild = GetPreviousGridEntry(currentGridEntry, gridEntry.Children, out currentGridEntryFound); 230AccessibleObject? foundChild = GetNextGridEntry(currentGridEntry, gridEntry.Children, out currentGridEntryFound); 259GridEntryCollection subGridEntry = current.Children; 290GridEntryCollection 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)
System.Windows.Forms.Interop.Tests (2)
PropertyGridTests.cs (2)
25var encodingEntry = entries[0].Children.First(_ => _.PropertyName == "Int_Property"); 59var encodingEntry = entries[0].Children.First(_ => _.PropertyName == "Int_Property");
System.Windows.Forms.Tests (5)
System\Windows\Forms\AccessibleObjects\PropertyGridView.PropertyGridViewAccessibleObjectTests.cs (5)
55GridEntry entry = propertyGrid.GetCurrentEntries()[0].Children[2]; 70GridEntry entry = propertyGrid.GetCurrentEntries()[0].Children[2]; 96foreach (GridEntry entry in category.Children) 181foreach (GridEntry entry in category.Children) 263foreach (GridEntry entry in category.Children)
System.Windows.Forms.TestUtilities (1)
PropertyGridInternal\SubPropertyGrid.cs (1)
36.Children
System.Windows.Forms.UI.IntegrationTests (13)
PropertyGridInternal\DropDownButton.DropDownButtonAccessibleObjectTests.cs (1)
67grid.SelectedEntry.Children.First().AccessibilityObject,
PropertyGridInternal\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObjectTests.cs (11)
27entry.Children.First().AccessibilityObject.FragmentNavigate(NavigateDirection.NavigateDirection_Parent)); 41Assert.Null(entry.Children.First().AccessibilityObject.FragmentNavigate(NavigateDirection.NavigateDirection_PreviousSibling)); 56entry.Children.First().AccessibilityObject, 57entry.Children[1].AccessibilityObject.FragmentNavigate(NavigateDirection.NavigateDirection_PreviousSibling)); 73grid.SelectedEntry.Children.First().AccessibilityObject.FragmentNavigate(NavigateDirection.NavigateDirection_PreviousSibling)); 89grid.SelectedEntry.Children.First().AccessibilityObject.FragmentNavigate(NavigateDirection.NavigateDirection_PreviousSibling)); 103Assert.Null(entry.Children.Last().AccessibilityObject.FragmentNavigate(NavigateDirection.NavigateDirection_NextSibling)); 118entry.Children[1].AccessibilityObject, 119entry.Children.First().AccessibilityObject.FragmentNavigate(NavigateDirection.NavigateDirection_NextSibling)); 145entry.Children.First().AccessibilityObject, 218entry.Children.Last().AccessibilityObject,
PropertyGridInternal\PropertyGridView.GridViewTextBox.GridViewTextBoxAccessibleObjectTests.cs (1)
81grid.SelectedEntry.Children.First().AccessibilityObject,