3 overrides of CreateChildren
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
100protected override bool CreateChildren(bool diffOldChildren) => true;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
115protected override bool CreateChildren(bool diffOldChildren = false)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
191protected override bool CreateChildren(bool diffOldChildren = false)
7 references to CreateChildren
System.Windows.Forms (7)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (5)
200CreateChildren(); 320bool childrenExpandable = CreateChildren(); 514CreateChildren(); 2193CreateChildren(useExistingChildren: true); 2253CreateChildren();
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
121return base.CreateChildren(diffOldChildren);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
193bool expandable = base.CreateChildren(diffOldChildren);