I need to use the styles in several modules in Silverlight application based on Prism 4. What is the best approach for this?
Asked
Active
Viewed 281 times
6
-
Having same problem, because all modules are separate applications they should refernce common libiriaries to be able to build. This will enlarge the final size of application by O(N) of modules. – v00d00 Sep 09 '11 at 13:17
-
1Yes yes but no... The main reason is to make posibility see changes in VS designer. – unlim Sep 09 '11 at 13:23
1 Answers
1
You can achieve this by adding the resources to your prism shell project and adding a reference to the shell module project in all the other modules.

dev.bv
- 980
- 9
- 16
-
1To avoid cyclic references, use a common project as well (referenced by all the modules) to hold shared controls, classes etc. – dev.bv Oct 17 '11 at 16:20