19 lines
397 B
C#
19 lines
397 B
C#
using Prism.Ioc;
|
|
using System.Windows;
|
|
|
|
namespace ExampleCore
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App
|
|
{
|
|
protected override void RegisterTypes(IContainerRegistry containerRegistry)
|
|
{
|
|
//nothing
|
|
}
|
|
|
|
protected override Window CreateShell() => Container.Resolve<MainWindow>();
|
|
}
|
|
}
|