1 override of BrowsableAttributes
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
57public override AttributeCollection BrowsableAttributes
2 writes to BrowsableAttributes
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
378_rootEntry.BrowsableAttributes = BrowsableAttributes;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
157_parent.BrowsableAttributes = value;
5 references to BrowsableAttributes
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (2)
152get => _parent?.BrowsableAttributes; 1271AttributeCollection? 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);