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