4 references to Icon
System.Drawing.Common (2)
System\Drawing\Icon.cs (2)
74
public Icon(Icon original, Size size) :
this
(original, size.Width, size.Height)
236
public object Clone() => new
Icon
(this, Size.Width, Size.Height);
System.Windows.Forms (1)
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
454
_provider.Icon = new
Icon
(icon, (int)(icon.Width * factor), (int)(icon.Height * factor));
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Internals\ScaleHelper.cs (1)
432
return (icon.Width == width && icon.Height == height && !alwaysCreateNew) ? icon :
new
(icon, width, height);