Click here to Skip to main content
6,629,377 members and growing! (19,894 online)
Email Password   helpLost your password?
Desktop Development » Dialogs and Windows » General     Intermediate License: The Code Project Open License (CPOL)

Assigning an application’s icon to all forms in the application

By Sergey Stoyan

It is a handy thing if all the windows in an application, by default, have the same icon like the application’s executable. Here is a tip: how to easily assign your application’s icon to all the hosted forms.
C#, Windows (Win2K, WinXP, Win2003, Vista, TabletPC), .NET, Dev
Posted:5 Oct 2008
Views:12,740
Bookmarked:30 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
16 votes for this article.
Popularity: 4.87 Rating: 4.04 out of 5

1
1 vote, 6.3%
2
4 votes, 25.0%
3
4 votes, 25.0%
4
7 votes, 43.8%
5

Introduction

While developing an application, often, it is a handy thing if all the windows of the application have, by default, the same icon like the application’s executable. However, if you want to do so, you have to manually assign the icon for each form in Visual Studio. If the executable icon is changed, you have to repeat this work again. This article describes a tip for how to assign your application’s icon to all the forms hosted by the application with code.

It is written in C#, and can be used in any .NET language as a DLL.

The most important code for the icon extraction was gotten from here. It was only slightly fixed and enhanced.

Solution

All you have to do is:

  1. Assign an icon to your project in Visual Studio.
  2. Add the classes contained in the folder IconRoutines to your project, or reference IconRoutines.dll in your project.
  3. Add the following line to each form constructor in your app where you want to set the same icon as the application’s icon:
  4. this.icon = Cliver.IconRoutines.HostIcon;

This will make the windows of your app have the same icon like the app itself. That’s all.

How it works

This section is addressed to inquisitive guys, and can be omitted.

The first step is getting the icon of the executable.

After some time wasted with the .NET Icon class, I understood that correctly extracting the icon from an EXE file (or any file containing icons) is not a simple thing. Why? Because of several hacks there:

  • Icon.ExtractAssociatedIcon extracts only a small image from an icon stored in the file.
  • Icon.Save saves icons in a 16-color format only.

That means the code for extracting icons from files must be written from scratch. Fortunately, such a code was done already by Steve McMahon, and only needed some upgrade. It fetches an icon’s images from an executable. You can find it in the attached sources.

The second step is creating an Icon type object from the fetched images. The following code does it:

/// <summary>
/// Extract all icon images from the library file like .exe, .dll, etc. 
/// </summary>
/// <param name="file">file where icon is extracted from</param>
/// <returns>extracted icon</returns>
public static Icon ExtractIconFromLibrary(string file)
{
    // .NET Icon Explorer (http://www.vbaccelerator.com/home/NET/
    //                     Utilities/Icon_Extractor/article.asp) is used here.
    Icon icon = null;
    try
    {
        vbAccelerator.Components.Win32.GroupIconResources gir = 
              new vbAccelerator.Components.Win32.GroupIconResources(file);
        if (gir.Count < 0)
            return icon;

        vbAccelerator.Components.Win32.IconEx i = 
              new vbAccelerator.Components.Win32.IconEx();
        if (gir[0].IdIsNumeric)
            i.FromLibrary(file, gir[0].Id);
        else
            i.FromLibrary(file, gir[0].Name);

        icon = i.GetIcon();
    }
    catch (Exception e)
    {
        throw (new Exception("Could not extract the host icon.", e));
        icon = null;
    }
    return icon;
}

/// <summary>
/// Icon of the hosting application.
/// </summary>
public static Icon HostIcon
{
    get
    {
        if (_HostIcon == null)
            _HostIcon = IconRoutines.ExtractIconFromLibrary(
                        Application.ExecutablePath);
        return _HostIcon;
    }
}
static Icon _HostIcon = null;

Now, we only have to assign IconRoutines.HostIcon to the form’s icons.

Using the code

In the attached code, you can find:

  • A project IconRoutines that contains the code for the icon management. You can compile it as a DLL and link to your project; else, add the code of IconRoutines to your code.
  • Project Test that references IconRoutines.dll and uses it.

Be happy!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sergey Stoyan


Member
Sergey is graduated as applied mathematician. He is specialized in client/server applications, backup systems, data parsing tools, web crawlers and search engines. Work for CliverSoft Co. Favorite languages are C#, C++, Perl
Occupation: Architect
Company: CliverSoft (www.cliversoft.com)
Location: Ukraine Ukraine

Other popular Dialogs and Windows articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 11 of 11 (Total in Forum: 11) (Refresh)FirstPrevNext
GeneralThanks Pinmemberdbrenth5:46 7 Oct '08  
GeneralWhy not use inheritance? PinmemberRob_III23:42 6 Oct '08  
GeneralRe: Why not use inheritance? PinmemberSergey Stoyan8:36 7 Oct '08  
GeneralRe: Why not use inheritance? PinmemberRob_III10:32 7 Oct '08  
GeneralUse Application Resources PinmemberCustec23:09 5 Oct '08  
GeneralRe: Use Application Resources PinmemberSergey Stoyan23:34 5 Oct '08  
GeneralRe: Use Application Resources PinmemberCustec23:38 5 Oct '08  
GeneralRe: Use Application Resources Pinmembernet_user3:26 12 Mar '09  
GeneralRe: Use Application Resources PinmembervishalMGiri2:06 25 Mar '09  
GeneralUsing application icon in forms PinmemberMalcolm Gilbert15:08 5 Oct '08  
GeneralRe: Using application icon in forms PinmemberSergey Stoyan21:26 5 Oct '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 5 Oct 2008
Editor: Smitha Vijayan
Copyright 2008 by Sergey Stoyan
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project