0

我将程序分为 3 层;GUI、BL、IO 并试图将文件从我的服务器抓取到我的电脑。我把它做成了多线程并且 zorks 很好,但是当我尝试向它添加一个委托以将消息从我的 IO 发送到我的 GUI 时,它困扰着我。它说的是:

不允许通过各种线程执行操作:它来自另一个线程,它比创建元素的线程有权访问控制标签下载进度。

我所拥有的是:

图形用户界面

private void buttonDownload_Click(object sender, EventArgs e)
{
    download = new BL_DataTransfer(Wat.FILM, titel, this.downloadDel);
    t = new Thread(new ThreadStart(download.DownLoadFiles));    
    t.Start();
}
private void UpdateDownloadLabel(string File)
{
        labelDownloadProgress.Text = "Downloading: " + File;
}

提单

    public void DownLoadFiles()
    {
        //bestanden zoeken op server
        string map = BASEDIR + this.wat.ToString() + @"\" + this.titel + @"\";
        string[] files = IO_DataTransfer.GrapFiles(map);

        //pad omvormen
        string[] downloadFiles = this.VeranderNaarDownLoadPad(files,this.titel);
        IO_DataTransfer.DownloadFiles(@".\" + this.titel + @"\", files, downloadFiles, this.obserdelegate);
    }

IO

    public static void DownloadFiles(string map, string[] bestanden, string[] uploadPlaats, ObserverDelegate observerDelegete)
    {
        try
        {
            Directory.CreateDirectory(map);

            for (int i = 0; i < bestanden.Count(); i++)
            {
                observerDelegete(bestanden[i]);
                File.Copy(bestanden[i], uploadPlaats[i]);
            }
        }
        catch (UnauthorizedAccessException uoe) { }
        catch (FileNotFoundException fnfe) { }
        catch (Exception e) { }        
    }

德尔盖特

 public delegate void ObserverDelegate(string fileName);
4

2 回答 2

1

假设这是失败的标签更新,您需要将事件编组到 UI 线程。为此,请将您的更新代码更改为:

private void UpdateDownloadLabel(string File)
{
    if (labelDownloadProgress.InvokeRequired)
    {
        labelDownloadProgress.Invoke(new Action(() =>
            {
                labelDownloadProgress.Text = "Downloading: " + File;
            });
    }
    else
    {
        labelDownloadProgress.Text = "Downloading: " + File;
    }
}

我最终为此创建了一个我可以调用的扩展方法 - 从而减少了我的应用程序中重复代码的数量:

public static void InvokeIfRequired(this Control control, Action action)
{
    if (control.InvokeRequired)
    {
        control.Invoke(action);
    }
    else
    {
        action();
    }
}

然后这样调用:

private void UpdateDownloadLabel(string File)
{
    this.labelDownloadProgress.InvokeIfRequired(() =>
       labelDownloadProgress.Text = "Downloading: " + File);
}
于 2012-04-14T12:10:47.073 回答
0

如果UpdateDownloadLabel函数在某个控制代码文件中,请使用如下模式:

private void UpdateDownloadLabel(string File)
{
     this.Invoke(new Action(()=> {
             labelDownloadProgress.Text = "Downloading: " + File;
      })));
}

您需要在 UI 线程上调用分配,以便能够更改标签上的某些内容。

于 2012-04-14T12:09:30.873 回答