c#中winform工具中的STA错误

时间:2013-02-14 08:59:34

标签: c# winforms openfiledialog

我得到“当前线程必须设置为单线程单元(STA)模式才能进行OLE调用。确保您的Main函数标记了STAThreadAttribute。只有在调试器附加到进程时才会引发此异常“错误。以下是代码。

if (externalButton.Checked == true)
{
    // int i = 1;
    saveFileDialog.Title = "Save the Proofer Report";
    saveFileDialog.Filter = "Document Files (*.doc)|*.doc|Document Files        (*.docx)|*.docx";
     saveFileDialog.FilterIndex = 0;
     saveFileDialog.InitialDirectory = "MyDocuments";
     saveFileDialog.FileName = "Proofer Report -- " +  Path.GetFileName((string)fileName) + ".doc";
     //i.tostring()
     saveFileDialog.DefaultExt = ".doc"; 

     saveFileDialog.ShowHelp = true;
     saveFileDialog.ShowDialog();-----getting the error here
     fname = saveFileDialog.FileName;
  }
  else
  {
     fname =(string)fileName;              
  }
  if (fname != "")
  {               
     if (worker.CancellationPending == true)
     {
        // report progress
        worker.ReportProgress(25);
        return;

}

Program.cs的

     [STAthread]
static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Form1());

    }

2 个答案:

答案 0 :(得分:0)

确保您的Main功能标记为STAThreadAttribute

或者,如果您在另一个线程上运行UI代码,请使用某种机制在主线程上调用它(例如BeginInvoke)。

至于为什么保存文件对话框需要单线程单元模型的技术原因,它源于使用Windows Shell的公共文件对话框。可以在此处加载第三方扩展,并且它们期望单线程单元线程模型。

ShellExecute备注部分提供了有关此要求的一些很好的信息,尽管它是为C ++开发人员编写的。

答案 1 :(得分:-1)

解决方案1 ​​

在Main方法上方使用STAThread

[STAThread]
static void Main(string[] args)

{

}

解决方案2

如果解决方案不起作用,请清理您的解决方案。还要交叉检查是否真的删除了所有dll。转到您的调试文件夹并从那里删除任何旧/陈旧dll。然后再次重建你的解决方案,一切都应该是好的。

我的经验说....大多数时候,解决方案2工作正常。