private void StartNormalMode() { MyFunctions.UpdateManager.CheckUpdate(); Mode = AppMode.Normal; ShowMainWindow(); Plugin.PluginManager.Open(); SaveInServer.Download(); SaveInServer.SartUpdateTimer(); }
private void BT_AccountLogin_Click(object sender, RoutedEventArgs e) { AccountConnectionWindow acw = new AccountConnectionWindow(); acw.ShowDialog(); if (acw.Success) { Properties.Settings.Default.UserID = acw.UserID; Properties.Settings.Default.Save(); SaveInServer.Download(); SaveInServer.Connection(); ShowIfSaveOnline(); } }