8 references to GetEditor
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (2)
2007enable = TypeDescriptor.GetEditor(obj, typeof(ComponentEditor)) is not null; 3139var editor = (ComponentEditor?)TypeDescriptor.GetEditor(obj, typeof(ComponentEditor));
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (1)
198editor = (InstanceCreationEditor?)TypeDescriptor.GetEditor(ute, typeof(InstanceCreationEditor));
System.Windows.Forms.Design (4)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1334_uiTypeEditor = TypeDescriptor.GetEditor(_value, typeof(UITypeEditor));
System\Windows\Forms\Design\CollectionEditVerbManager.cs (1)
196CollectionEditor itemsEditor = TypeDescriptor.GetEditor(propertyValue, typeof(UITypeEditor)) as CollectionEditor;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1256object? ICustomTypeDescriptor.GetEditor(Type type) => TypeDescriptor.GetEditor(DataGridViewColumn, type);
System\Windows\Forms\Design\EditorServiceContext.cs (1)
147CollectionEditor? itemsEditor = TypeDescriptor.GetEditor(propertyValue, typeof(UITypeEditor)) as CollectionEditor;
System.Windows.Forms.Primitives (1)
System\ComponentModel\TypeDescriptorHelper.cs (1)
33editor = TypeDescriptor.GetEditor(component, typeof(T)) as T;