示例#1
0
 private void mnuCheckForUpdates_Click(object sender, EventArgs e)
 {
     UpdatesChecker.CheckForUpdates();
 }
示例#2
0
 private async void UpdateTimer_Tick(object args)
 {
     await UpdatesChecker.CheckForUpdates();
 }
示例#3
0
 private async void mnuCheckForUpdates_Click(object sender, EventArgs e)
 {
     await UpdatesChecker.CheckForUpdates();
 }
示例#4
0
 private async void MainForm_Load(object sender, EventArgs e)
 {
     LoadPlugins();
     LoadWindowSettings();
     await UpdatesChecker.CheckForUpdates(true);
 }