12 references to Bitmap
System.Drawing (5)
commonui\System\Drawing\Bitmap.cs (2)
280public Bitmap(int width, int height) : this(width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb) { 584result = new Bitmap(size.Width, size.Height, PixelFormat.Format32bppArgb);
commonui\System\Drawing\Icon.cs (2)
966bitmap = new Bitmap(Size.Width, Size.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb); 1027bitmap = new Bitmap(bmpData.Width, bmpData.Height, PixelFormat.Format32bppArgb);
misc\DpiHelper.cs (1)
457deviceImage = new Bitmap(deviceImageSize.Width, deviceImageSize.Height, logicalImage.PixelFormat);
System.Windows.Forms (4)
misc\DpiHelper.cs (1)
457deviceImage = new Bitmap(deviceImageSize.Width, deviceImageSize.Height, logicalImage.PixelFormat);
winforms\Managed\System\WinForms\Control.cs (1)
6170using (Bitmap image = new Bitmap(width, height, bitmap.PixelFormat)) {
winforms\Managed\System\WinForms\ImageList.cs (1)
725result = new Bitmap(imageSize.Width, imageSize.Height, PixelFormat.Format32bppArgb);
winforms\Managed\System\WinForms\ToolStripRenderer.cs (1)
937using (Bitmap textBmp = new Bitmap(textSize.Width, textSize.Height,PixelFormat.Format32bppPArgb)) {
System.Workflow.ComponentModel (3)
AuthoringOM\Design\ActivityDesigner.cs (2)
1060Bitmap designerImage = new Bitmap(Size.Width + (4 * ambientTheme.Margin.Width), Size.Height + (4 * ambientTheme.Margin.Height), PixelFormat.Format32bppArgb); 1978using (Bitmap temporaryBitmap = new Bitmap(designerTheme.Size.Width, designerTheme.Size.Height, PixelFormat.Format32bppArgb))
AuthoringOM\Design\MessageFilters\DragDropManager.cs (1)
679draggedImage = new Bitmap(draggedImageSize.Width, draggedImageSize.Height, PixelFormat.Format32bppArgb);