在我的 program.cs 文件中,代码如下:
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
frmWizard frm = new frmWizard();
Application.Run(frm);
Thread th = new Thread(frm.ThreadSetCom);
th.Start();
}
ThreadSetCom 是一种在无限循环中运行以检查某些内容的方法。我注意到 ThreadSetCom 只会在 WinForm 出现之前和我关闭表单之后执行。当表单可见时它不会执行。谁能帮我解决这个问题?