8 references to Width
PresentationFramework-SystemDrawing (1)
SystemDrawingExtension.cs (1)
141
bmData.Stride * (bmData.Height - 1) + (bmData.
Width
* 4),
System.Drawing.Common (2)
System\Drawing\Icon.cs (2)
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.Windows.Forms (4)
System\Windows\Forms\Controls\ImageList\ImageList.cs (4)
553
Debug.Assert(targetData.
Width
== sourceData.
Width
);
555
Debug.Assert(targetData.Stride == targetData.
Width
* 4);
581
for (int j = 3; j < bmpData.
Width
* 4; j += 4) // *4 is safe since we know PixelFormat is ARGB
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerUtils.cs (1)
675
int pixels = data.Height * data.
Width
;