gpt4 book ai didi

c# - 来自 MTA 的 STA 调用

转载 作者:行者123 更新时间:2023-11-30 14:57:19 24 4
gpt4 key购买 nike

我刚刚开始处理 STA/MTA 问题,对于问题的简单性,我深表歉意。我在这里的梯子底部找不到我真正可以理解的答案。

我正在为另一款软件编写插件,然后在工作线程中需要创建一些 UI 元素。我知道我不能从工作线程内部执行此操作,因为它不是 STA 线程,并且我需要返回到 Main(或另一个?)STA 线程来创建 UI 元素。一些澄清会大有帮助。

  1. 是否所有 STA 线程都具有相同的“权限”,即如果主线程是 STA 并创建一个窗口,则向其中添加一些 UI 元素。然后产生另一个 STA 线程,第二个线程同样创建一些 UI 元素,它们是在同一个“空间”中做的吗(糟糕的词选择,但我不知道还能使用什么)并且可以访问彼此的 UI 元素不造成死亡和破坏?或者我是否需要显式跳回到主/原始 STA 线程并且只从那个(而不仅仅是任何)STA 线程创建 UI 元素?

  2. 如果是这种情况(只允许 1 个 STA 线程制作 UI 元素),我该如何正确地做到这一点?我看过很多与此相关的帖子,但出于某种原因,我不太明白发生了什么,希望得到一个真正简单的答案。

请不要'这是一种很酷的巧妙方法......'我只需要在执行点的简单方法,如果需要的话,我需要一些 UI 元素跳回到主 STA 线程。

如果没有必要,那我就把那个工作线程变成STA线程,然后继续我的路,这样公平吗?还是我在自寻死路?

最佳答案

if the main thread is STA and creates a Window, adds some UI elements to it. Then spawns off another STA thread, and that second thread likewise creates some UI elements, are they doing it in the same 'space' [snip...] and can access each other's UI elements without causing death and destruction?

如果线程 A 和 B 都是 STA,那么它们可以各自创建和更新它们自己的 UI 元素,但彼此不能。任何其他想要影响 UI 的线程都必须使用 BeginInvoke 样式方法之一来请求适当的线程进行更新。

If it is not necessary, then I will just make that worker thread an STA thread and continue on my way, is that fair? Or am I courting disaster?

如果工作线程已设置为 MTA 并已初始化,则您可能无法将其设为 STA 线程。您可能需要创建一个新线程。

你是怎么做到的?似乎您想为您的 UI 使用 WPF (System.Windows.*) - 所以如果您“插入”的应用程序也在使用 WPF,您应该能够访问它并且重新使用它的 UI 线程。如果没有,您可以创建一个新线程,并在其上创建一个新的 Application 并调用 Run。这应该为您设置一个调度程序。

类似这样的东西(从我在其他地方的一些工作代码中复制的伪代码)

Dispatcher dispatcher = null; // we 'get to' the UI thread via the dispatcher

if(Application.Current) { // re use an existing application's UI thread
dispatcher = Application.Current.Dispatcher;
} else {
var threadReadyEvent = new ManualResetEvent(false);

var uiThread = new Thread(() => {
Thread.CurrentThread.SetApartmentState(ApartmentState.STA);

var application = new Application();
application.Startup += (sender, args) => {
dispatcher = application.Dispatcher;
threadReadyEvent.Set();
};

// apps have to have a "main window" - but we don't want one, so make a stub
var stubWindow = new Window {
Width = 1, Height = 1,
ShowInTaskbar = false, AllowsTransparency = true,
Background = Brushes.Transparent, WindowStyle = WindowStyle.None
};
application.Run(stubWindow);
}){ IsBackground = true };

uiThread.Start();
threadReadyEvent.WaitOne();
threadReadyEvent.Dispose();
}

dispatcher.Invoke(() => {
// ask the UI thread to do something and block until it finishes
});

dispatcher.BeginInvoke(() => {
// ask the UI thread to do something asynchronously
});

等等

关于c# - 来自 MTA 的 STA 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20960916/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com