添加 WorkStationClient 客户端
This commit is contained in:
22
WorkStationClient/App.xaml.cs
Normal file
22
WorkStationClient/App.xaml.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System.Windows;
|
||||
using Prism.Ioc;
|
||||
using WorkStationClient.Views;
|
||||
|
||||
namespace WorkStationClient
|
||||
{
|
||||
/// <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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user