紧凑框架:线程中的标签更新不起作用
本文关键字:标签 更新 不起作用 线程 框架 | 更新日期: 2023-09-27 18:34:16
在移动设备(Windows Mobile)的程序中,我使用紧凑的框架3.5,我下载了一个文件,并希望通过在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(),线程根本不会启动......(为什么呢?
我相信你在这里得到一个DeadLock
。
主线程正在等待t.Join();
然后当工作线程调用时targetLabel.Invoke
主线程无法调用它,因为它正在等待Join
这永远不会发生。这种情况在计算机科学中称为死锁。
取下Join()
,它应该可以工作。
顺便说一句,如果我离开 t.Join(),线程根本不会启动......(为什么呢?
不确定那是什么,这不是它应该的样子,尝试调试应用程序并弄清楚。如果未找到,请向我们提供更多信息以获取帮助。
希望这有帮助