Like a bitmap, an icon is used to display graphics on window objects. While a bitmap can have any dimension the window needs, the size of an icon is limited. This is because icons assume different roles on an application. Icons are used to represent folders in Windows Explorer and My Computer: ![]()
To create an icon, once again, you can use any application that has the capability. Normally, you can use Visual Studio .NET to create or design an icon. To do this, on the main menu of Visual Studio, you can click Project -> Add Resource… Then, in the Add Resource dialog box, you can select Icon and click New. When you start designing an icon, you would be presented with a drawing area whose dimensions are 32 x 32 pixels. This is the size of the icon that displays as Large Icon. Here is an example from the New File dialog box Visual Studio .NET in the Templates list: ![]() In some cases, you may allow the user to display smaller icons, which are 16x16 pixels: ![]() To make this possible, you can associate a second icon to the 32x32 one. The application you use to design your icon should make it simple for you to add this second icon. To do this in Visual Studio, while the icon is displaying, on the main menu, you can click Image -> New Image Type... Select 16x16, 16 colors and click OK. Whether you create only one or both versions of the icon, both are stored in a single file whose extension is .ico
To support icons, the GDI+ library provides the Icon class. To use an icon in your application, you can first declare an Icon variable using one of the class' constructors. If the icon is stored in a file, the simplest constructor to use it has the following syntax: Public Sub New(ByVal fileName As String) With this constructor, the name of, or the path to, the icon file is passed as argument. After creating the icon, if you want to use only one size version, you can use one the following constructors to declare the variable: Public Sub New(ByVal original As Icon, ByVal size As Size) Public Sub New(ByVal original As Icon, ByVal width As Integer, ByVal height As Integer) After initializing an Icon variable, if you want to get its dimensions, you can access its Width and its Height properties, or its Size property. As mentioned already, there are various ways an icon can be used. For example, you can display it in a control by drawing it. To do this, you can call the Graphics.DrawIcon() method which is overloaded with two versions whose syntaxes are: Overloads Public Sub DrawIcon(ByVal icon As Icon, _ ByVal targetRect As Rectangle) Overloads Public Sub DrawIcon(ByVal icon As Icon, _ ByVal x As Integer, _ ByVal y As Integer) The first version allows you to specify the location and dimensions of the icon. The second version allows you to specify only the location of the icon. |
|
- Display the form and double-click the middle of its body
- To display the icon in the title bar, implement the event as follows:
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim icoMain As Drawing.Icon = New Drawing.Icon("Diamond.ico") Me.Icon = icoMain End Sub
- Execute the application
- Close the form and return to your programming environment
评论