我正在尝试获取一个线程来更新 GUI,并建议我使用一个事件。
具体来说,应用程序在下面的方法 UpdateResult() 中给了我一个跨线程错误。我假设我引发的事件是从线程中引发的,因此问题是它试图更新在主线程上运行的 GUI。
我做错了什么?
谢谢达摩
C# 代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
public delegate void UpdateScreenEventHandler();
namespace EventHandler
{
public partial class Form1 : Form
{
public static event UpdateScreenEventHandler _UpdateScreen;
public Form1()
{
InitializeComponent();
}
public void Form1_Load(object sender, EventArgs e)
{
// Add event handlers to Show event.
_UpdateScreen += new UpdateScreenEventHandler(UpdateResult);
}
private void button1_Click(object sender, EventArgs e)
{
// Thread the status check
Thread trd = new Thread(() => Threadmethod());
trd.IsBackground = true;
trd.Start();
}
private void Threadmethod()
{
// Invoke the event.
_UpdateScreen.Invoke();
}
private void UpdateResult()
{
textBox1.Text = "This Is the result";
MessageBox.Show(textBox1.Text);
}
}
}