8 references to Bitmap
System.Drawing.Common.Tests (4)
System\Drawing\BitmapTests.cs (4)
87using Bitmap bitmap = new(typeof(BitmapTests), "bitmap_173x183_indexed_8bit.bmp"); 97AssertExtensions.Throws<ArgumentNullException, NullReferenceException>("type", () => new Bitmap(null, "name")); 107AssertExtensions.Throws<ArgumentException>(null, () => new Bitmap(type, resource)); 113AssertExtensions.Throws<ArgumentNullException, ArgumentException>("resource", null, () => new Bitmap(typeof(Bitmap), null));
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionGlyph.cs (1)
93_image = new Bitmap(typeof(ToolStripPanelSelectionGlyph), fileName);
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
289Bitmap addNewBitmap = new(typeof(DesignBindingPicker), "AddNewDataSource.bmp"); 1907Bitmap images = new(typeof(DesignBindingPicker), "DataPickerImages.bmp");
System\Windows\Forms\Design\DesignBindingValueUIHandler.cs (1)
24_dataBitmap = new Bitmap(typeof(DesignBindingValueUIHandler), "BoundProperty.bmp");