Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have several WPF projects that need to access a folder of images. What would the best way be to allow the projects to have access to the same images folder w/out duplication?

example structure:

  • Root Folder
    • Images
    • Project 1
    • Project 2
    • Project 3

I'm familiar w/ adding the "needed" images to the actual project itself, but am looking for a solution for the projects to have the same "central" library of images.

share|improve this question
2  
Why not simply add them to the project from that location and select "Always copy [to output directory]"? – Ed S. Dec 12 '11 at 19:18
2  
I'm not sure if it's possible with resources, but did you try adding the images to the project using the option - "Add as Link"? – Orchestrator Dec 12 '11 at 19:20
@ Ed S. - I thought about this idea, but wouldn't that still create duplication? If project 1 and project 2 both want to use image1, then wouldn't there be two image1's if I was to add it individually into each project that needs it? – moncada Dec 12 '11 at 19:27
@ Orchestrator - I've tried this, and it works great. I am currently looking into other solutions but so far this has been the easiest. – moncada Dec 12 '11 at 19:59

3 Answers

up vote 3 down vote accepted

You can place all your images in a central project and reference them via the pack syntax throughout your solution.

ImageSource="pack://application:,,,/MyProject;component/Images/MyImage.png"
share|improve this answer
what type of "project" would be used? after project is released, would I be able to switch out an image from /Images/ (that has the same name as an existing one) w/out the need to do a fresh rebuild? – moncada Dec 12 '11 at 19:58
You can use any project type (class, WPF), I typically have an infrastructure project which houses infrastructure type components for the solution. You would not be able to switch out the images as it is pulling them from the compiled DLL. – Aaron McIver Dec 12 '11 at 20:49
thanks, this is the approach I ended up with. – moncada Dec 12 '11 at 22:20
sorry, one more question. is there a reason why the images only show up during designer mode and not when the app. is actually ran? – moncada Dec 12 '11 at 22:28
@iimpact They should show up in both instances. – Aaron McIver Dec 13 '11 at 2:04
show 3 more comments

If you wanted to reduce the size of your deployed assembly and to keep the image files 'loose', you might consider the 'site of origin' scheme. It is the same format, but uses 'siteoforigin' for the authority rather than 'application'.

pack://siteoforigin:,,,/Subfolder/SiteOfOriginFile.jpg

share|improve this answer
the 'loose' files is what I am looking for. couldn't I include these files as "add-as-link" and then set the build to "content"? – moncada Dec 12 '11 at 20:17
That depends upon your deployment strategy. Items marked as 'content' are loose, BUT the application knows about them at compile time and inserts metadata about them into the assembly. Because of that, you can simply use the 'application' authority URI's like the others here have suggested. If you wanted totally loose and no relation to your assembly, then 'site of origin' is the way to go. – Garry Vass Dec 12 '11 at 20:46
thanks Garry. These images are typically going to be used as gui icons. Is there a way to swap out the images and change the image picture w/out rebuilding/compiling? – moncada Dec 12 '11 at 21:01
If the stuff being swapped have the same names, you're ok. Otherwise to avoid a rebuild, you would store the URI's as string literals in the app.config. – Garry Vass Dec 12 '11 at 21:25

You can have the path to those images in your application.This will avoid the copy of images in your project. But if you package installer you need to package them properly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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