18 lines
362 B
C#
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>();
|
|||
|
}
|
|||
|
}
|