Initializes a new instance of the Icon class from a resource in the specified assembly.
Assembly: System.Drawing (in System.Drawing.dll)
Public Sub New ( _ type As Type, _ resource As String _ )
public Icon( Type type, string resource )
public:
Icon(
Type^ type,
String^ resource
)
new : type:Type * resource:string -> Icon
Parameters
- type
- Type: System.Type
A Type that specifies the assembly in which to look for the resource.
- resource
- Type: System.String
The resource name to load.
| Exception | Condition |
|---|---|
| ArgumentException |
An icon specified by resource cannot be found in the assembly that contains the specified type. |
This constructor creates an Icon from a resource with the name specified by the resource parameter in the assembly that contains the type specified by the type parameter.
This constructor combines the namespace of the given type together with the string name of the resource and looks for a match in the assembly manifest. For example you can pass in the Control type and Error.ico to this constructor, and it looks for a resource that is named System.Windows.Forms.Error.ico.
The following code example demonstrates how to use the Icon constructor. To run this example, paste the code into a Windows Form and handle the form's Paint event. Call the ConstructAnIconFromAType method from the Paint event handler, passing e as EventArgs.
Private Sub ConstructAnIconFromAType(ByVal e As PaintEventArgs) Dim icon1 As New Icon(GetType(Control), "Error.ico") e.Graphics.DrawIcon(icon1, New Rectangle(10, 10, 50, 50)) End Sub
private void ConstructAnIconFromAType(PaintEventArgs e) { Icon icon1 = new Icon(typeof(Control), "Error.ico"); e.Graphics.DrawIcon(icon1, new Rectangle(10, 10, 50, 50)); }
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.