powerfun-new-net/App.xaml.cs
2020-10-13 08:54:24 +08:00

31 lines
698 B
C#

using OnlineUserPool.Views;
using Prism.Ioc;
using Prism.Unity;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace OnlineUserPool
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : PrismApplication
{
protected override Window CreateShell()
{
var w = Container.Resolve<MainWindow>();
return w;
}
protected override void RegisterTypes(IContainerRegistry containerRegistry)
{
//throw new NotImplementedException();
}
}
}