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)
119PropertyDescriptorCollection properties = tab.GetProperties(null, new ClassWithDefaultProperty(), null); 134PropertyDescriptorCollection properties = tab.GetProperties(mockTypeDescriptorContext.Object, new ClassWithDefaultProperty(), null); 150PropertyDescriptorCollection properties = tab.GetProperties(mockTypeDescriptorContext.Object, new ClassWithDefaultProperty(), null); 166PropertyDescriptorCollection properties = tab.GetProperties(mockTypeDescriptorContext.Object, new ClassWithDefaultProperty(), null); 176PropertyDescriptorCollection properties = tab.GetProperties(null, new ClassWithDefaultProperty(), Array.Empty<Attribute>()); 196Assert.Empty(tab.GetProperties(null, null, null));