示例#1
0
        private void StartNormalMode()
        {
            MyFunctions.UpdateManager.CheckUpdate();

            Mode = AppMode.Normal;
            ShowMainWindow();
            Plugin.PluginManager.Open();
            SaveInServer.Download();
            SaveInServer.SartUpdateTimer();
        }
示例#2
0
        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();
            }
        }