在我使用紧凑框架 3.5 的移动设备(windows mobile)程序中,我下载了一个文件并希望通过在 Windows.Forms.Label 中显示它来监视进度。
这是我的代码:
我的线程的开始(在按钮单击事件中)
ThreadStart ts = new ThreadStart(() => DownloadFile(serverName, downloadedFileName, this.lblDownloadPercentage));
Thread t = new Thread(ts);
t.Name = "download";
t.Start();
t.Join();
我的线程方法
static void DownloadFile(string serverName, string downloadedFileName, Label statusLabel)
{
HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(serverName);
do
{
//Download and save the file ...
SetPercentage(statusLabel, currentProgress);
} while(...)
}
更新标签文本的方法
private static void SetPercentage(Label targetLabel, string value)
{
if (targetLabel.InvokeRequired)
{
targetLabel.Invoke((MethodInvoker)delegate
{
targetLabel.Text = value;
});
}
else
{
targetLabel.Text = value;
}
}
下载和保存部分工作正常,但是当涉及到 targetLabel.Invoke-part(第三个代码片段)时,程序停止做任何事情。没有崩溃,没有错误消息,没有异常。它只是停止。
这里出了什么问题?
顺便说一句,如果我离开 t.Join() ,线程根本不会启动......(为什么?)