I'm trying to do something rather simple: add a simple icon to the main window of the application. This can be done rather easily. The icon itself is placed in the Resources directory and its build action is set to Resource. The XAML code for the window includes a reference to this icon:

Icon="Resources/wiser.ico"

This works just fine. However, what I really want to do is grab this icon from another place, a directory of images shared across several versions of our application (we support about 5 platforms depending on how you count). In our WinForms past, this was done by adding the resource as an existing item and choosing 'Add as Link' from the dialog. This, however, causes issues with the icon noted above.

First, it doesn't end up in the proper place in the assembly. Reflector finds it in the base path of the application, not within the Resources directory where it should be. A non-linked version of the icon does indeed appear in the Resources directory.

Second, a fix for the path (Icon="wiser.ico") allows things to compile but makes the designer throw an error, rendering the designer itself useless.

I suspect this is just a bug (or two, depending on how you count). Is there a simple way around this? Note that I had hoped to support linking from our source control system instead but that doesn't appear to be supported by SVN and the end result would likely be a touch confusing to maintain.

link|improve this question

33% accept rate
@Ken: Very good question. I have in fact come across the identical problem in developing a WPF app of my own, and have not found a resolution. Have you submitted this on MS Connect perhaps? It certainly seems like a bug to me, though I do hope there exists a workaround for the sake of current development. – Noldorin Jul 9 '09 at 23:06
This is the only other place online I can find that confirms the issue: learnwpf.com/Posts/…. Unfortunately, it provides no workaround. – Noldorin Jul 9 '09 at 23:15
No, I've never mentioned this on MS connect. Please feel free to do so. – Ken Wootton Aug 26 '09 at 18:41
feedback

1 Answer

Two things that I can think of for sharing resources:

1) You could put your resources in a seperate assembly that you could share across your applications.

Use this syntax for getting the ico or other items (png, xaml, etc) out of the assembly:

Icon="/CommonResources;component/app.ico"

or using pack syntax

Icon="pack://application:,,,/CommonResources;component/app.ico"

2) You could use the pack application syntax to load the ico in a relative file path from your assembly.

Icon="pack://siteoforigin:,,,/app.ico"
link|improve this answer
Thanks, but that isn't really the problem. I can address the resource properly, if I could the VS designer to recognize it. – Ken Wootton Jan 15 '09 at 14:44
feedback

Your Answer

 
or
required, but never shown

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