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?
|
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? | |||
|
feedback
|
|
"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. | |||||
feedback
|