1

我想在另一个线程中运行一个自己的类,但是如果我这样做了,我就不能使用我的,例如,在 a 中的标签EventHandler,我该如何避免这种情况?

这就是我的代码的样子:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Ts3_Movearound
{
    public partial class Form1 : Form
    {
        TS3_Connector conn = new TS3_Connector();
        Thread workerThread = null;
        public Form1()
        {
            InitializeComponent();
            conn.runningHandle += new EventHandler(started);
            conn.stoppedHandle += new EventHandler(stopped);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //System.Threading.Thread connw = new System.Threading.Thread(conn);
            workerThread = new Thread(conn.Main);
            workerThread.Start();
        }

        public void started(Object sender, EventArgs e)
        {
            label1.Text = "Status: Running!";
        }
        public void stopped(Object sender, EventArgs e)
        {
            label1.Text = "Status: Stopped!";
        }
    }
}

这就是错误:

InvalidOperationExpetion in Line "label1.Text = "Status: Running!";"

4

3 回答 3

5

您只能通过 UI 线程更新控件。使用 label1.Invoke() 来做到这一点:

label1.Invoke((MethodInvoker)delegate {
    label1.Text = "Status: Running!";"
});
于 2012-10-30T09:23:34.013 回答
1

我会考虑为此使用BackgroundWorker。然后,您使用以下内容:

1)在调用 RunWorkerAsync 之前,您将标签设置为运行,因为没有线程问题。2)如果您设置任何控件使用,则在调用 RunWorkerAsync 后:

            label1.Invoke(new Action(() => label1.Text = @"Status: Running!"));

3) 进程完成后,您可以通过将方法分配给 RunWorkerCompleted 事件来将标签设置为停止。这个方法应该没有线程问题,因为它在主线程上运行。

于 2012-10-30T10:10:04.503 回答
0

SO有很多关于它的数据。我为你找到了一些:

您可以从另一个线程访问 UI 元素吗?(不设置)

如何在另一个线程中访问 GUI 元素?

如何从 WPF 中的 BackgroundWorker 线程直接访问 UI 线程?

于 2012-10-30T09:24:21.117 回答