vote up 0 vote down star
1

Hi,

I have small problem with my .net 2.0 winforms application. I want to embed a few different icons to app.

There are also other requirements:

  • must be automatic rebuildable by ms-build; using external gui apps for preparation isn't allowed
  • application must contain versioninfo.

After embeding multiple icons, I want to register let's say two file associations to application documents / extension files.

[Registry]
...
Root: HKCR; Subkey: "MyFileExt\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\MyApp.exe,2"

where "2" it's icon index.

I know that I need to use somehow old-style Win32 resource file.

I also found somewhere that if using Visual Studio 2005 it's possible to add 'native resource file' but it doesn't exist in 2008 anymore.

Is it possible to meet all this requirements and if yes - how?

flag

74% accept rate

6 Answers

vote up 0 vote down check

I decided to put all icons into separate old-school plain win32 c++ *.dll. It's more convienient and I don't need to do any tricks with versioninfo/win32resources.

link|flag
vote up 0 vote down

Compile the application, then open the .exe with visual studio, you can then add the all the icons you want.

There is also something you can do with win32 resource files in c# but i cannot find the lik for that at the moment

link|flag
vote up 0 vote down

When I need multiple icons I embedded the png/bmp (or whatever image type it is) as a image resource in the application. Go to Project -> Properties -> Resoruces in Visual Studio.

The in code you can do the following at run-time:

buttonPlay.Image = Properties.Resources.Navigation_Media_Pause;

or

buttonPlay.Image = Properties.Resources.Navigation_Media_Play;

Assumning that you called the 2 image resources "Navigation_Media_Pause" and "Navigation_Media_Play".

link|flag
vote up 0 vote down

New WinForms App -> Expand Properties in the Solution Explorer -> Double click on Resources.resx -> Click Add Resource (The drop down also includes adding existing Resources)

These should be available to you now in the visual designer or in code using Properties.Resources.[Your Resource Name Here]

Hope that helps.

link|flag
vote up 1 vote down

Just like in 2005, you can add the icons to the resources (via the project properties). After you do that, go to the icons you have added in the project explorer each icon has a BuildAction property of how that resource is stored and utilized.

I think what you are looking for is the EmbeddedResource value of the BuildAction property.

link|flag

Your Answer

Get an OpenID
or

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