public Bitmap SaveImage(string url)
{
WebClient client = new WebClient();
client.OpenReadCompleted += client_OpenReadCompleted;
Stream stream = client.OpenRead(url);
Bitmap bitmap; bitmap = new Bitmap(stream);
stream.Flush();
stream.Close();
// client.Dispose();
return bitmap;
}
void client_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
MessageBox.Show(e.Result.ToString());
}
Когда загружается изображение, MessageBox не показывает
, почему не работает событие OpenReadCompleted?