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