6 references to Bitmap
System.Drawing.Common.Tests (5)
System\Drawing\BitmapTests.cs (5)
223
AssertExtensions.Throws<ArgumentException>(null, () => new
Bitmap
(new Bitmap(1, 1), width, 1));
238
AssertExtensions.Throws<ArgumentException>(null, () => new
Bitmap
(new Bitmap(1, 1), 1, height));
321
using Bitmap bitmap =
new
(image, width, height);
343
AssertExtensions.Throws<ArgumentNullException>("original", "image", () => new
Bitmap
(null, 1, 2));
353
AssertExtensions.Throws<ArgumentException>(null, () => new
Bitmap
(image, 1, 1));
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
2091
_largeButtonImages.Images.Add(new
Bitmap
(bitmap, s_largeButtonSize.Width, s_largeButtonSize.Height));