4 references to Icon
System.Drawing.Common (2)
System\Drawing\Icon.cs (2)
74public Icon(Icon original, Size size) : this(original, size.Width, size.Height) 236public 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)
432return (icon.Width == width && icon.Height == height && !alwaysCreateNew) ? icon : new(icon, width, height);