mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
592 B
24 lines
592 B
using DatabaseManager.Views;
|
|
using Prism.Ioc;
|
|
using System.Windows;
|
|
|
|
namespace DatabaseManager
|
|
{
|
|
/// <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)
|
|
{
|
|
containerRegistry.RegisterForNavigation<ViewCover>("Cover");
|
|
containerRegistry.RegisterForNavigation<ViewHeader>("Header");
|
|
}
|
|
}
|
|
}
|