14 references to Format32bppArgb
System.Drawing (7)
commonui\System\Drawing\Advanced\BitmapData.cs (1)
88
case PixelFormat.
Format32bppArgb
:
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 (4)
966
bitmap = new Bitmap(Size.Width, Size.Height, System.Drawing.Imaging.PixelFormat.
Format32bppArgb
);
973
System.Drawing.Imaging.PixelFormat.
Format32bppArgb
);
1027
bitmap = new Bitmap(bmpData.Width, bmpData.Height, PixelFormat.
Format32bppArgb
);
1028
targetData = bitmap.LockBits(new Rectangle(0, 0, bmpData.Width, bmpData.Height), ImageLockMode.WriteOnly, PixelFormat.
Format32bppArgb
);
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ControlPaint.cs (1)
269
PixelFormat.
Format32bppArgb
);
winforms\Managed\System\WinForms\ImageList.cs (3)
662
if(bmpData.PixelFormat != PixelFormat.
Format32bppArgb
&& bmpData.PixelFormat != PixelFormat.Format32bppRgb) {
725
result = new Bitmap(imageSize.Width, imageSize.Height, PixelFormat.
Format32bppArgb
);
726
targetData = result.LockBits(new Rectangle(0, 0, imageSize.Width, imageSize.Height), ImageLockMode.WriteOnly, PixelFormat.
Format32bppArgb
);
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
);