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