/// <summary> /// Начинает процесс поиска обновлений в отдельном потоке. /// </summary> private void CheckForUpdates() { if (!WrkChkApp.IsBusy) { WrkChkApp.RunWorkerAsync(); } }
/// <summary> /// Starts update checking sequence in a separate thread. /// </summary> private void CheckForUpdates() { // Changing icons... UpdAppImg.Image = Properties.Resources.upd_chk; // Starting updates check in a separate thread... if (!WrkChkApp.IsBusy) { WrkChkApp.RunWorkerAsync(UserAgent); } }