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)
206CreateChildren(); 329bool childrenExpandable = CreateChildren(); 523CreateChildren(); 2202CreateChildren(useExistingChildren: true); 2262CreateChildren();
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);