3 overrides of GetProperties
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertiesTab.cs (1)
43
public override PropertyDescriptorCollection?
GetProperties
(ITypeDescriptorContext? context, object component, Attribute[]? attributes)
System\Windows\Forms\Design\EventsTab.cs (1)
97
public override PropertyDescriptorCollection
GetProperties
(
System.Windows.Forms.Tests (1)
System\Windows\Forms\PropertyGrid.PropertyTabCollectionTests.cs (1)
71
public override PropertyDescriptorCollection
GetProperties
(ITypeDescriptorContext context, object component, Attribute[] attributes) => TypeDescriptor.GetProperties(component, attributes);
3 references to GetProperties
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1303
properties = ownerTab.
GetProperties
(this, value, attributes);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.PropertyMerger.cs (1)
116
PropertyDescriptorCollection? properties = tab.
GetProperties
(parentEntry, obj, attributes);
System.Windows.Forms.Tests (1)
System\Windows\Forms\Design\PropertyTabTests.cs (1)
182
Assert.Same(result, tab.
GetProperties
(context, component, attributes));