19 references to GetProperties
PresentationFramework (3)
MS\Internal\Data\ValueTable.cs (1)
222pd = TypeDescriptor.GetProperties(item.GetType())[name];
System\Windows\Data\BindingListCollectionView.cs (1)
2187pdc = TypeDescriptor.GetProperties(itemType);
System\Windows\Data\CollectionView.cs (1)
1451properties = TypeDescriptor.GetProperties(itemType);
System.ComponentModel.Annotations (2)
System\ComponentModel\DataAnnotations\ValidationAttributeStore.cs (1)
215var properties = TypeDescriptor.GetProperties(_type);
System\ComponentModel\DataAnnotations\Validator.cs (1)
519var properties = TypeDescriptor.GetProperties(instance.GetType());
System.ComponentModel.TypeConverter (2)
System\ComponentModel\BindingList.cs (1)
518_itemTypeProperties = TypeDescriptor.GetProperties(typeof(T));
System\ComponentModel\ReflectTypeDescriptionProvider.ReflectedTypeData.cs (1)
304return TypeDescriptor.GetProperties(_type)[attr.Name];
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
110PropertyDescriptor? componentProperty = TypeDescriptor.GetProperties(ownerType)[PropertyName!];
System\Windows\Forms\DataBinding\Binding.cs (1)
498propInfos = TypeDescriptor.GetProperties(controlClass);
System\Windows\Forms\DataBinding\BindingManagerBase.cs (1)
109return TypeDescriptor.GetProperties(listType);
System.Windows.Forms.Design (9)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
105foreach (PropertyDescriptor p in TypeDescriptor.GetProperties(type))
System\ComponentModel\Design\ComponentDesigner.ShadowPropertyCollection.cs (1)
62descriptor = TypeDescriptor.GetProperties(_designer.Component.GetType())[propertyName];
System\Windows\Forms\Design\ComponentTray.cs (2)
943PropertyDescriptor loc = TypeDescriptor.GetProperties(receiver.GetType())["Location"]; 1529PropertyDescriptor loc = TypeDescriptor.GetProperties(receiver.GetType())["Location"];
System\Windows\Forms\Design\ControlDesigner.cs (1)
930PropertyDescriptorCollection props = TypeDescriptor.GetProperties(component.GetType());
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
42PropertyDescriptor? prop = TypeDescriptor.GetProperties(typeof(DataGridViewColumn))["Width"];
System\Windows\Forms\Design\DocumentDesigner.cs (1)
634PropertyDescriptor backProp = TypeDescriptor.GetProperties(Component.GetType())["BackColor"];
System\Windows\Forms\Design\FormDocumentDesigner.cs (1)
322PropertyDescriptor windowStateProp = TypeDescriptor.GetProperties(component.GetType())["WindowState"];
System\Windows\Forms\Design\TextBoxBaseDesigner.cs (1)
77return TypeDescriptor.GetProperties(typeof(TextBoxBase))["Text"]!.ShouldSerializeValue(Component);