示例#1
0
文件: App.xaml.cs 项目: vincedani/svu
        /// <summary>
        /// Initializes the singleton application object.  This is the first line of authored code
        /// executed, and as such is the logical equivalent of main() or WinMain().
        /// </summary>
        public App()
        {
            this.InitializeComponent();
            ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.FullScreen;
            this.Suspending += OnSuspending;

            _service = new LocalStorageService();
            _service.MigrateDatabase();
            //_service.SwapDatabase();
        }