Perché gli Appunti di Windows richiedono un thread STA?

0

Per copiare qualcosa negli appunti di Windows (almeno in .NET, per quanto ne so), è necessario farlo su un thread separato che si trova in modalità STA. Un esempio che ho usato è questo.

Thread thread = new Thread(() => Clipboard.SetText(s.Trim()));
thread.SetApartmentState(ApartmentState.STA); //Set the thread to STA
thread.Start();
thread.Join();

Perché devo fare tutto questo invece di poter semplicemente chiamare:

Clipboard.SetText("text")
    
posta tt9 10.12.2015 - 16:17
fonte

1 risposta

1

In una parola, legacy.

Nell'articolo Perché è richiesto STAThread? , noi è stato detto:

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.

In un altro modo, la comunicazione con i componenti del sistema operativo come gli Appunti viene gestita tramite COM e ciò richiede la modifica dello stato dell'appartamento del thread utilizzando un thread STA.

    
risposta data 10.12.2015 - 16:29
fonte

Leggi altre domande sui tag