I have a main Silverlight Shell project, which calls several Silverlight Module projects. I need to pass parameters to my module projects through constructors.

Can anybody help me to solve this?

link|improve this question
feedback

1 Answer

"Ask and yea shall receive" is the IOC motto :)

Prism uses injection via the UnityContainer. When a module is loaded it will resolve any registered interfaces specified in the constructor of the module.

Just specify an interface to an object that you have previously registered as a singleton and it will be passed to with any module. Place all your settings/parameters in that singleton.

If you need more information, just ask.

link|improve this answer
Iam using MEF, is there any solution using MEF? – Mahima Radhakrishnan Jul 19 '11 at 5:20
There is nothing stopping you from using Unity with MEF. PRISM 4 now includes MEF and the 2 co-exist happily. You need injection to pass parameters to dynamically loaded/created modules. – HiTech Magic Jul 19 '11 at 9:23
feedback

Your Answer

 
or
required, but never shown

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