Why are WinForms applications STAThread by default?

后端 未结 4 1618
醉话见心
醉话见心 2020-12-03 22:11

When you create an empty WinForms application with Visual Studio, the template has the STAThread attribute in the main application class.

4条回答
  •  借酒劲吻你
    2020-12-03 22:23

    To quote from an MSDN blog,

    When the STAThreadAttribute is applied, it changes the apartment state of the current thread to be single threaded. Without getting into a huge discussion about COM and threading, this attribute ensures the communication mechanism between the current thread and other threads that may want to talk to it via COM. When you're using Windows Forms, depending on the feature you're using, it may be using COM interop in order to communicate with operating system components. Good examples of this are the Clipboard and the File Dialogs.

提交回复
热议问题