1 override of BrowsableAttributes
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
57public override AttributeCollection BrowsableAttributes
1 write to BrowsableAttributes
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
375_rootEntry.BrowsableAttributes = BrowsableAttributes;
6 references to BrowsableAttributes
System.Windows.Forms (6)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (3)
152get => _parent?.BrowsableAttributes; 155_parent?.BrowsableAttributes = value; 1265AttributeCollection? browsableAttributes = BrowsableAttributes;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.PropertyMerger.cs (3)
102if (parentEntry.BrowsableAttributes is not null) 104attributes = new Attribute[parentEntry.BrowsableAttributes.Count]; 105parentEntry.BrowsableAttributes.CopyTo(attributes, 0);