17 implementations of GetEditor
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
132public virtual object? GetEditor(Type editorBaseType) => _parent?.GetEditor(editorBaseType);
System\ComponentModel\TypeDescriptor.cs (4)
2837object ICustomTypeDescriptor.GetEditor(Type editorBaseType) 3151object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) 3585object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) 3979public object? GetEditor(Type editorBaseType)
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
339object? ICustomTypeDescriptor.GetEditor(Type editorBaseType)
System\Data\Common\DbConnectionStringBuilder.cs (1)
612object? ICustomTypeDescriptor.GetEditor(Type editorBaseType)
System\Data\Common\DbDataRecord.cs (1)
89object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) => null;
System\Data\DataRowView.cs (1)
246object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) => null;
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
70object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) => null;
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2489object? ICustomTypeDescriptor.GetEditor(Type editorBaseType)
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
47object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) => GetEditor(_instance, editorBaseType);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
28object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) => null;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1264object? ICustomTypeDescriptor.GetEditor(Type editorBaseType) => null;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1256object? ICustomTypeDescriptor.GetEditor(Type type) => TypeDescriptor.GetEditor(DataGridViewColumn, type);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (1)
126public object? GetEditor(Type editorBaseType) => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
832public object GetEditor(Type editorBaseType)
10 references to GetEditor
System.ComponentModel.TypeConverter (6)
System\ComponentModel\CustomTypeDescriptor.cs (1)
132public virtual object? GetEditor(Type editorBaseType) => _parent?.GetEditor(editorBaseType);
System\ComponentModel\TypeDescriptor.cs (5)
1072return GetDescriptor(component, noCustomTypeDesc)!.GetEditor(editorBaseType); 3155object? editor = _primary.GetEditor(editorBaseType) ?? _secondary.GetEditor(editorBaseType); 3600return desc.GetEditor(editorBaseType); 3997editor = desc.GetEditor(editorBaseType);
System.Windows.Forms.Tests (4)
System\Windows\Forms\AxHostTests.cs (4)
2587Assert.Null(customTypeDescriptor.GetEditor(editorBaseType)); 2591Assert.Null(customTypeDescriptor.GetEditor(editorBaseType)); 2612Assert.Null(customTypeDescriptor.GetEditor(editorBaseType)); 2619Assert.Null(customTypeDescriptor.GetEditor(editorBaseType));