1234567891011121314151617181920 |
- using DBBackupTool.Views;
- using System.Windows;
- namespace DBBackupTool;
- /// <summary>
- /// Interaction logic for App.xaml
- /// </summary>
- public partial class App : PrismApplication
- {
- protected override Window CreateShell()
- {
- return Container.Resolve<MainWindow>();
- }
- protected override void RegisterTypes(IContainerRegistry containerRegistry)
- {
-
- }
- }
|