forked from powerfun/udpservice
31 lines
698 B
C#
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();
|
|
}
|
|
}
|
|
}
|