using System.Windows; namespace WPF_4_Prism; /// /// Interaction logic for App.xaml /// public partial class App : PrismApplication { protected override void RegisterTypes(IContainerRegistry containerRegistry) { } protected override Window CreateShell() { return Container.Resolve(); } }