Graphics.DrawIcon Method (Icon, Int32, Int32)
.NET Framework (current version)
Draws the image represented by the specified Icon at the specified coordinates.
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- icon
-
Type:
System.Drawing.Icon
Icon to draw.
- x
-
Type:
System.Int32
The x-coordinate of the upper-left corner of the drawn image.
- y
-
Type:
System.Int32
The y-coordinate of the upper-left corner of the drawn image.
| Exception | Condition |
|---|---|
| ArgumentNullException | icon is null. |
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. The code performs the following actions:
Creates an icon from a standard Windows icon file SampIcon.ico in the example folder.
Creates the coordinates of the upper-left corner at which to draw the icon.
Draws the icon to the screen.
The drawn icon is unscaled.
.NET Framework
Available since 1.1
Available since 1.1
Show: