vue-java-tutorials/CSharp/WPFTutorial/WPF-4-Prism/App.xaml.cs

18 lines
362 B
C#

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