I have a prism 4 application using an MEF bootstrapper. I have implemented a splash screen from the bootstrapper and want to provide the user with module info (as they are loaded) while the module manager is loading the app/modules.
I think I need to subscribe to the LoadModuleCompleted event in the module manager. I cannot do this because when I resolve the module manager with the container in the MEF bootstrapper the PRISM framework calls OnImportsSatisfied which loads all the modules. (This is too late since I want to listen for this).
How can I display a splash window with a progress bar displaying module info/progress?
Many thanks!