App.xaml.cs 394 B

1234567891011121314151617181920
  1. using DBBackupTool.Views;
  2. using System.Windows;
  3. namespace DBBackupTool;
  4. /// <summary>
  5. /// Interaction logic for App.xaml
  6. /// </summary>
  7. public partial class App : PrismApplication
  8. {
  9. protected override Window CreateShell()
  10. {
  11. return Container.Resolve<MainWindow>();
  12. }
  13. protected override void RegisterTypes(IContainerRegistry containerRegistry)
  14. {
  15. }
  16. }