6 references to Bitmap
System.Drawing (5)
commonui\System\Drawing\Bitmap.cs (2)
313
public Bitmap(Image original) :
this
(original, original.Width, original.Height) {
462
this
(original, (object) newSize != null ? newSize.Width : 0, (object) newSize != null ? newSize.Height : 0) {
commonui\System\Drawing\ImageConverter.cs (1)
147
image = new
Bitmap
(image, image.Width, image.Height);
commonui\System\Drawing\ToolboxBitmapAttribute.cs (2)
219
img = new
Bitmap
((Bitmap)smallImage, largeSize.Width, largeSize.Height);
369
img = new
Bitmap
(b, largeSize.Width , largeSize.Height);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
2464
this.imageList[LARGE_BUTTONS].Images.Add(new
Bitmap
((Bitmap)images[i], largeButtonSize.Width, largeButtonSize.Height));