原因分析
System.Threading.ThreadStateException 错误通常发生在尝试在非 UI 线程中创建或访问 ActiveX 控件(如 COM 组件)时。在 Windows Forms 应用程序中,所有 UI 操作必须在创建该 UI 的线程(通常是主线程)上执行。
解决方案
要解决这个问题,你需要确保在 UI 线程上创建和使用 ActiveX 控件。可以使用 Invoke 或 BeginInvoke 方法将操作委托到 UI 线程。以下是一个示例,展示如何在 UI 线程上安全地创建和使用 ActiveX 控件:示例代码
using System; using System.Windows.Forms; public class MainForm : Form { private Button button1; public MainForm() { button1 = new Button { Text = "Create ActiveX Control", Dock = DockStyle.Fill }; button1.Click += Button1_Click; this.Controls.Add(button1); } private void Button1_Click(object sender, EventArgs e) { // 确保在 UI 线程上创建 ActiveX 控件 if (this.InvokeRequired) { this.Invoke(new Action(() => CreateActiveXControl())); } else { CreateActiveXControl(); } } private void CreateActiveXControl() { try { // 创建 ActiveX 控件,例如 Excel.Application Type excelType = Type.GetTypeFromProgID("Excel.Application"); dynamic excelApp = Activator.CreateInstance(excelType); excelApp.Visible = true; // 进行其他操作 excelApp.Workbooks.Add(); excelApp.Cells[1, 1].Value = "Hello, ActiveX!"; } catch (Exception ex) { MessageBox.Show("Error: " + ex.Message); } } [STAThread] public static void Main() { Application.EnableVisualStyles(); Application.Run(new MainForm()); } }
来源:GPT-4O-Mini
标签:控件,ActiveX,ThreadStateException,System,button1,UI,线程,报错 From: https://www.cnblogs.com/Nikole/p/18421741