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