14 references to Format32bppArgb
System.Drawing.Common (8)
System\Drawing\Bitmap.cs (3)
84public Bitmap(int width, int height) : this(width, height, PixelFormat.Format32bppArgb) 120public Bitmap(Image original, int width, int height) : this(width, height, PixelFormat.Format32bppArgb) 240using Bitmap result = new(size.Width, size.Height, PixelFormat.Format32bppArgb);
System\Drawing\Icon.cs (4)
632bitmap = new Bitmap(Size.Width, Size.Height, PixelFormat.Format32bppArgb); 637PixelFormat.Format32bppArgb); 691bitmap = new Bitmap(bmpData.Width, bmpData.Height, PixelFormat.Format32bppArgb); 692targetData = bitmap.LockBits(new Rectangle(0, 0, bmpData.Width, bmpData.Height), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
System\Drawing\Imaging\BitmapData.cs (1)
79case PixelFormat.Format32bppArgb:
System.Windows.Forms (5)
System\Windows\Forms\Controls\ImageList\ImageList.cs (3)
573if (bmpData.PixelFormat is not PixelFormat.Format32bppArgb and not PixelFormat.Format32bppRgb) 631result = new Bitmap(_imageSize.Width, _imageSize.Height, PixelFormat.Format32bppArgb); 632targetData = result.LockBits(new Rectangle(0, 0, _imageSize.Width, _imageSize.Height), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownButtons.cs (1)
375_cachedBitmap = new Bitmap(width, height, PixelFormat.Format32bppArgb);
System\Windows\Forms\Rendering\ControlPaint.cs (1)
295PixelFormat.Format32bppArgb);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerUtils.cs (1)
671BitmapData data = b.LockBits(new Rectangle(0, 0, b.Width, b.Height), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb);