20 references to Size
System.Drawing (15)
commonui\System\Drawing\Icon.cs (15)
143iconSize = original.Size; 316get { return Size.Height;} 355get { return Size.Width;} 365return new Icon(this, Size.Width, Size.Height); 427Size cursorSize = Size; 492Size size = Size; 966bitmap = new Bitmap(Size.Width, Size.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb); 971System.Drawing.Imaging.BitmapData bmpdata = bitmap.LockBits(new Rectangle(0, 0, Size.Width, Size.Height), 982int lineLength = Size.Width * 4; 983int width = Size.Width; 984for(int j=(Size.Height-1)*4;j>=0;j-=4) 1064Size size = Size;
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ErrorProvider.cs (2)
1697Size size = icon.Size; 1739return icon.Size;
winforms\Managed\System\WinForms\NativeMethods.cs (2)
2732hicon = SafeNativeMethods.CopyImage(new HandleRef(icon, icon.Handle), NativeMethods.IMAGE_ICON, icon.Size.Width, icon.Size.Height, 0);
winforms\Managed\System\WinForms\StatusBarPanel.cs (1)
558sz.Width += this.icon.Size.Width + 5;