I have a WPF Desktop application using PRISM, there are 12 modules which do not depend on each other , every time i start the shell, modules are been loaded , the point is that I would like to know which module loads at the last so I could start an action. How could I determine this ?

link|improve this question

Do you mean that you want to trigger the action when all modules are loaded? Do you have a place in Your code where all modules are loaded? Or can You log the initialization of the modules? – erikH Dec 7 '11 at 18:45
I like to raise an event when all of my modules are loaded. the application does not know how many modules are going to be loaded, the modules are located in a directory ".\modules". – Ehsan Ershadi Dec 7 '11 at 19:14
feedback

1 Answer

up vote 3 down vote accepted

Override Bootstrapper.InitializeModules, call base, and then ACTION!

link|improve this answer
Poof !! , I'm going to check this out ... – Ehsan Ershadi Dec 7 '11 at 19:52
Thanks erikH, This was exactly what I needed. – Ehsan Ershadi Dec 7 '11 at 22:12
feedback

Your Answer

 
or
required, but never shown

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