21 lines
451 B
C#
21 lines
451 B
C#
using System.Windows;
|
|
using Prism.DryIoc;
|
|
using Prism.Ioc;
|
|
|
|
namespace Demo_TODO
|
|
{
|
|
/// <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>();
|
|
}
|
|
}
|
|
} |