3 types derived from ComponentEditor
System.Windows.Forms (1)
System\Windows\Forms\Design\WindowsFormsComponentEditor.cs (1)
12public abstract class WindowsFormsComponentEditor : ComponentEditor
System.Windows.Forms.Tests (2)
System\Windows\Forms\AxHost.AxPropertyDescriptorTests.cs (1)
1358private class SubComponentEditor : ComponentEditor
System\Windows\Forms\AxHostTests.cs (1)
3100private class SubComponentEditor : ComponentEditor
12 references to ComponentEditor
netstandard (1)
netstandard.cs (1)
204[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ComponentEditor))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
190[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ComponentEditor))]
System.Windows.Forms (7)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2490if (editorBaseType != typeof(ComponentEditor))
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (1)
252attributes.Add(new EditorAttribute(typeof(Com2ComponentEditor), typeof(ComponentEditor)));
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
15[Editor($"System.Windows.Forms.Design.DataGridViewComponentEditor, {AssemblyRef.SystemDesign}", typeof(ComponentEditor))]
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (4)
2007enable = TypeDescriptor.GetEditor(obj, typeof(ComponentEditor)) is not null; 3139var editor = (ComponentEditor?)TypeDescriptor.GetEditor(obj, typeof(ComponentEditor));
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\CommandSet.cs (1)
286if (!TypeDescriptorHelper.TryGetEditor(obj, out ComponentEditor? editor))
System.Windows.Forms.Tests (2)
System\Windows\Forms\AxHostTests.cs (2)
2581[InlineData(typeof(ComponentEditor))] 2598[InlineData(typeof(ComponentEditor))]