In a WPF application without a prism, if I want to run the code after initialization (for example, to complete the task specified by the command line argument), I can do this in the Loadedmain window event . However, with Prism, the modules are initialized after the main window is displayed, that is, it is IModule.Initialize()called after Bootstrapper.CreateShell()and Bootstrapper.InitializeShell(). In this case, which event / override should be used?
NS.X. source
share