0

我有一个在没有 UI 的情况下运行的 FTP 进程。并有一个使用此 ftp 控件的 winform。在那个窗口中,我有一个显示 ftp 上传进度的进度条。进度通过在底层演示者上更新的接口到达窗口(我正在使用 MVP 模式)。

我的问题是当尝试更新进度时,它总是抛出这个异常。

通过线程非法操作:控制“prgProgresoSubido”是从您创建它的线程以外的线程访问的。

即使我在表单中使用 BackGroundWorker,该问题仍然存在。

    // This is  a delegated on presenter when a File finish to upload
    void client_FileUploadCompletedHandler(object sender, FileUploadCompletedEventArgs e)
    {
        string log = string.Format("{0} Upload from {1} to {2} is completed. Length: {3}. ",
            DateTime.Now, e.LocalFile.FullName, e.ServerPath, e.LocalFile.Length);

        archivosSubidos += 1;
        _Publicacion.ProgresoSubida = (int)((archivosSubidos / archivosXSubir) * 100);
        //this.lstLog.Items.Add(log);
        //this.lstLog.SelectedIndex = this.lstLog.Items.Count - 1;
    }


    // This is My interfase 

public interface IPublicacion
{
    ...
    int ProgresoSubida { set; } 
}

/// And Here is the implementartion of the interfase on the form

public partial class PublicarForm : Form ,IPublicacion 
{
    //Credenciales para conectarse al servicio FTP 
    public FTPClientManager client = null;
    public XmlDocument conf = new XmlDocument();
    public string workingDir = null;
    public webTalk wt = new webTalk();
    private readonly PublicacionesWebBL _Publicador;

    public PublicarForm()
    {
        InitializeComponent();

        String[] laPath = { System.AppDomain.CurrentDomain.BaseDirectory};
        String lcPath = System.IO.Path.Combine(laPath);

        _Publicador = new PublicacionesWebBL(this, lcPath);
    }

    public int ProgresoSubida
    {
        set
        {
            //  This is my prograss bar, here it throw the exception.
            prgProgresoSubido.Value = value;
        }
    }
}

我该怎么做才能避免这个问题?

4

2 回答 2

2

通常,用户界面和控件的所有更新都必须从主线程(事件调度程序)完成。如果您尝试从不同的线程修改控件的属性,您将得到一个异常。

您必须调用 Control.Invoke 以在事件调度程序上调用更新 UI 的方法

控制调用

在这里,在表单上放置一个按钮和一个标签,然后试试这个

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        Thread t = new Thread(new ThreadStart(TestThread));
        t.Start();
    }

    private void TestThread()
    {
        for (int i = 0; i < 10; i++)
        {
            UpdateCounter(i);
            Thread.Sleep(1000);
        }
    }

    private void UpdateCounter(int i)
    {


        if (label1.InvokeRequired)
        {
            label1.Invoke(new ThreadStart(delegate { UpdateCounter(i); }));
        }
        else
        {
            label1.Text = i.ToString();
        }
    }
}

意识到,如果你从一个线程触发一个事件,那么该事件将在同一个线程上。因此,如果该线程不是事件分派器,则需要调用。

此外,BackgroundWorker 可能会为您提供一些机制(正如评论员所说),可以为您简化此操作,但我以前从未使用过它,所以我将把它留给您进行调查。

于 2013-02-22T15:32:46.520 回答
1

正如 Alan 刚刚指出的,您必须在 UI 线程中使用 UI 控件执行所有操作。

只需像这样修改您的属性:

public int ProgresoSubida
{
    set
    {
        MethodInvoker invoker = delegate
                                {
                                    prgProgresoSubido.Value = value;
                                }
        if (this.InvokeRequired)
        {
            Invoke(invoker);
        }
        else
        {
            invoker();
        }

    }
}
于 2013-02-22T15:49:08.750 回答