2 types derived from BitmapEditor
System.Windows.Forms.Design.Tests (2)
System\Drawing\Design\BitmapEditorTests.cs (2)
101private class SubBitmapEditor : BitmapEditor 114private class CustomGetImageExtendersEditor : BitmapEditor
3 instantiations of BitmapEditor
System.Windows.Forms.Design.Tests (3)
System\Drawing\Design\BitmapEditorTests.cs (3)
15BitmapEditor editor = new(); 32BitmapEditor editor = new(); 65BitmapEditor editor = new();
10 references to BitmapEditor
System.Drawing.Design (1)
artifacts\obj\System.Drawing.Design.Facade\Release\net9.0\System.Drawing.Design.Forwards.cs (1)
3[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Design.BitmapEditor))]
System.Windows.Forms.Design (2)
System\Drawing\Design\ImageEditor.cs (1)
18private static readonly Type[] s_imageExtenders = [typeof(BitmapEditor), typeof(MetafileEditor)];
System\Windows\Forms\Design\ImageListImageEditor.cs (1)
18internal static Type[] s_imageExtenders = [typeof(BitmapEditor)];
System.Windows.Forms.Design.Editors (1)
artifacts\obj\System.Windows.Forms.Design.Editors.Facade3x\Release\net9.0\System.Windows.Forms.Design.Editors.Forwards.cs (1)
7[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Design.BitmapEditor))]
System.Windows.Forms.Design.Tests (6)
EnsureEditorsTests.cs (1)
47[InlineData(typeof(Bitmap), typeof(BitmapEditor))]
System\Drawing\Design\BitmapEditorTests.cs (4)
15BitmapEditor editor = new(); 32BitmapEditor editor = new(); 65BitmapEditor editor = new(); 104public static new List<string> BitmapExtensions = BitmapEditor.BitmapExtensions;
System\Drawing\Design\ImageEditorTests.cs (1)
113Assert.Equal([typeof(BitmapEditor), typeof(MetafileEditor)], extenders);