新表单上的STAThread错误(SaveFileDialog)

时间:2013-08-07 01:40:08

标签: c# .net frameworks

所以基本上我为我的程序创建了一个登录系统,当用户登录它时,它打开了Form1。但我需要Form1作为STA线程。 我在Form1中收到此错误:

  

{“在进行OLE调用之前,必须将当前线程设置为单线程单元(STA)模式。确保主函数上标记了STAThreadAttribute。仅当调试器附加到进程时才会引发此异常。 “}   在此代码中

SaveFileDialog FSave = new SaveFileDialog()
        {
            Filter = "Executable Files|*.exe",
            InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
        };
        if (FSave.ShowDialog() == DialogResult.OK)//im getting the error here
        {
        // CodeDom compiler code
        }

这是我的Program.cs

using System;
using System.Windows.Forms;
namespace hwid_login_system
{
    static class Program
    {
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Login());
        }
    }
}

这就是我在登录表单中打开Form1的方式

private void complete()
    {
        if (loggedin && hwid)
        {
            MessageBox.Show("Logged in successfully!");
            System.Threading.Thread t = new System.Threading.Thread(new System.Threading.ThreadStart(ThreadProc));
            t.Start();
            this.Close();
        }
        else
            MessageBox.Show("Something else went wrong..", "Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
    }
public static void ThreadProc()
    {
        Application.Run(new Form1());
    }

1 个答案:

答案 0 :(得分:0)

如果从第二个线程中调用FSave.ShowDialog(),则会出现此错误。您应该始终从主应用程序线程中打开Windows窗体。

考虑调用委托给你的线程显示对话,而不是直接打开表单。