24 lines
465 B
C#
24 lines
465 B
C#
using WOWS.Framwork.Views;
|
|
using Prism.Ioc;
|
|
using Prism.Modularity;
|
|
using System.Windows;
|
|
|
|
namespace WOWS.Framwork
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App
|
|
{
|
|
protected override Window CreateShell()
|
|
{
|
|
return Container.Resolve<MainWindow>();
|
|
}
|
|
|
|
protected override void RegisterTypes(IContainerRegistry containerRegistry)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|