myWebClient->DownloadProgressChanged += gcnew DownloadProgressChangedEventHandler(&Form1::DownloadProgressCallback);
給出了錯誤:如何讓事件處理程序訪問成員數據?
1>.\Form1.cpp(26) : error C3352: 'void Form1::DownloadProgressCallback(System::Object ^,System::Net::DownloadProgressChangedEventArgs ^)' : the specified function does not match the delegate type 'void (System::Object ^,System::Net::DownloadProgressChangedEventArgs ^)'
文檔使用靜態非成員函數,因爲這代表參數,但我想更新Form1
類的進度條成員。我在這裏做錯了什麼?
我使用的是.NET 2.0,所以請儘可能使用語言。