it is possible to set the Application-Icon in the Project Properties. If you do this the exe will have this icon instead of the default one. this icon is a win32-resource and can also be accessed like this:

change icon

i want to have special icons for filetypes which are used by my program. to associate an filetype-icon i can specify it in the registry ("MyProg.exe,1" in the "DefaultIcon" Key).

so how to ADD MORE icons to the assembly that i can use it for the filetype-association?

thank you very much

ps: it is a WPF-Application (.NET 4.0)

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Windows doesn't know anything about managed resources, you need to add unmanaged resources to your executable. In parapura's screenshot, you need to select the Resource file radio button. That requires a .res file, a binary file that's created by running the Windows SDK rc.exe tool on a .rc file. The .rc file is a simple text file that contains resource statements, similar to this:

1 ICON "mainicon.ico"
2 ICON "alternative1.ico"
3 ICON "alternative2.ico"
1 24 "app.manifest"

Be sure to save this file into your project folder without utf-8 encoding, using Notepad is best. Create the required app.manifest file with Project + Add New Item, Application Manifest File. Add this .rc file to your project with Project + Add Existing Item. Double-click it and verify that you can see the icons and the manifest. Right-click the top node, Add Resource and click Version + New. Edit the version info, beware that it will no longer automatically match the attributes in AssemblyInfo.cs

You can compile the .rc file into a .res file with the Visual Studio Command prompt:

rc /r something.rc

Which produces the .res file you can use in the project property tab. Doing this is a pre-build event is advisable but a bit hard to get right. The number of ways this can go wrong are numerous, good luck.

link|improve this answer
problem solved. but i´ve used ResEdit to create the rc/res-file. it works perfectly – 0xDEADBEEF Jan 18 at 22:37
Or just deploy a native DLL that contains such resources with the application, so you don't have to run custom tools or lose versioning information. – David Anderson Feb 10 at 7:30
feedback

If you go to your project settings you will see a way to set the icon for the application.

enter image description here

To add additional icons ...

  • Right Mouse Button on Project in Solution Explorer and pick New Item and then Resources File
  • Double click the resources file in solution explorer and pick Add Resource -> New Icon
link|improve this answer
i know. i did this already. if i compile this, the exe has the selected icon. but how to add some more icons? – 0xDEADBEEF Jan 18 at 15:56
@0xDEADBEEF please see my edit – parapura rajkumar Jan 18 at 16:00
does not work (added Resource1.resx, loaded the ico-file and clean+build solution). hm, i forgot to mention (explicitly) that my program is a WPF/.NET4-Application – 0xDEADBEEF Jan 18 at 16:28
feedback

I've just created a simple tool to do exactly this without having to mess with .res files. It is a tiny utility which you can use as part of your Post-Build event and lets you add all icon files in a particular folder to your assembly. If we assume that you have a icons folder under your main project folder you can add the following post-build event:

C:\path\to\InsertIcons.exe $(TargetPath) $(ProjectDir)icons

A further description and a download can be found at http://einaregilsson.com/add-multiple-icons-to-a-dotnet-application/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.