Esempio n. 1
0
 /// <summary>
 /// What to do with the application on startup
 /// Start the SQL connection and start the Tagger logic.
 /// open a new MainWindow (NOTE, THE XMAL FILE DOESNT HAVE STARTUP URI).
 /// set the notification icon.
 /// </summary>
 /// <param name="e"></param>
 protected override void OnStartup(StartupEventArgs e)
 {
     SqliteDataAccess.StartUp();
     MainBackgroundLogic.CheckFirstTime();
     Tagger.StartUp();
     base.OnStartup(e);
     SetUpView();
     SetUpViewModel();
     ShowMainWindow();
 }