protected override Window CreateShell()
{
return Container.Resolve<MainWindow>();
}
referring to the above code in Prism/blob/master/Sandbox/Wpf/HelloWorld/HelloWorld/App.xaml.cs, I do not understand how the MainWindow type is registered with the container.
looking at the registrations of the container, MainWindow type is not listed.
Can someone please help me to understand how it works?