如何从 C# Windows 窗体应用程序中的另一个线程写入文本框
在 C# Windows 窗体应用程序中,修改来自 UI 线程以外的线程的 TextBox 可能会导致线程问题。要解决这个问题,有必要了解线程安全的概念。
理解线程安全
线程安全是指代码块或对象执行的能力多个线程同时执行,不会导致意外的副作用。在 Windows 窗体应用程序的上下文中,UI 控件(包括文本框)不是线程安全的。尝试从非 UI 线程更新其属性可能会导致异常或意外行为。
解决方案:调用控制方法
从单独的线程安全地修改 UI 元素线程中,您必须使用控件的 Invoke 或 BeginInvoke 方法来调用它们的方法。这些方法确保操作被编组到 UI 线程,这是唯一可以安全地与控件交互的线程。
代码示例
考虑以下代码演示使用 Invoke 方法从单独的线程写入 TextBox 的示例:
public partial class Form1 : Form { public Form1() { InitializeComponent(); new Thread(SampleFunction).Start(); } public void AppendTextBox(string value) { if (InvokeRequired) { // Invoke the AppendTextBox method if the current thread is not the UI thread. this.Invoke(new Action<string>(AppendTextBox), new object[] { value }); return; } textBox1.Text += value; } void SampleFunction() { for (int i = 0; i < 5; i++) { AppendTextBox("hi. "); Thread.Sleep(1000); } } }
在此代码:
以上是如何从非 UI 线程安全更新 C# Windows 窗体文本框?的详细内容。更多信息请关注PHP中文网其他相关文章!