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