Base:
method
GetProperties
System.Windows.Forms.Design.PropertyTab.GetProperties(System.ComponentModel.ITypeDescriptorContext, System.Object, System.Attribute[])
7 references to GetProperties
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertiesTab.cs (1)
41=> GetProperties(context: null, component, attributes);
System.Windows.Forms.Tests (6)
System\Windows\Forms\PropertyGridInternal\PropertiesTabTests.cs (6)
117PropertyDescriptorCollection properties = tab.GetProperties(null, new ClassWithDefaultProperty(), null); 132PropertyDescriptorCollection properties = tab.GetProperties(mockTypeDescriptorContext.Object, new ClassWithDefaultProperty(), null); 148PropertyDescriptorCollection properties = tab.GetProperties(mockTypeDescriptorContext.Object, new ClassWithDefaultProperty(), null); 164PropertyDescriptorCollection properties = tab.GetProperties(mockTypeDescriptorContext.Object, new ClassWithDefaultProperty(), null); 174PropertyDescriptorCollection properties = tab.GetProperties(null, new ClassWithDefaultProperty(), Array.Empty<Attribute>()); 194Assert.Empty(tab.GetProperties(null, null, null));