示例#1
0
文件: Main.cs 项目: ExoKalork/EHWVB
 private void TM_WaitForInternet_Tick(object sender, EventArgs e)
 {
     TM_WaitForInternet.Stop();
     if (CheckInternetConnection(true))
     {
         CheckForNewVersion();
         ConnectCheck();
     }
     else
     {
         TM_WaitForInternet.Start();
     }
 }