0
ダウンロードファイルをダウンロードして、20%、40%ハングとき - それは完了したが、ファイルが完全にC#ハング
修正する方法をダウンロードされていないかのように、ある>client_DownloadFileCompleted
を?
MessageBox.Show("Пожалуйста ожидайте начинаем процесс скачивание клиента", "тест",
MessageBoxButtons.OK, MessageBoxIcon.Information);
WebClient client = new WebClient();
client.Proxy = null;
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(client_DownloadProgressChanged);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(client_DownloadFileCompleted);
client.DownloadFileAsync(new Uri("http://***/test.7z"), @"test.7z");
void client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
{
MessageBox.Show("Клиент успешно скачался,Ожидайте идет процесс распаковки.", "тест", MessageBoxButtons.OK, MessageBoxIcon.Information);