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