C# 中的 FIFO 与 winform

发布于 2024-07-16 20:11:00 字数 250 浏览 9 评论 0原文

我对线程中的 GUI 问题感到恼火。 如何创建 FIFO,以便我的主窗体/线程将接收数据来执行操作,而不是让我的线程使用回调并自行运行代码(并失败)?

有问题的 gui 问题 -> SelectedNode = .Nodes[0] 上的线程异常

I'm getting annoyed with GUI problems in my threads. How do i create a FIFO so my main form/thread will receive data to do things instead of having my threads use a callback and run the code (and fail) themselves?

The gui problem in question -> Thread exception on SelectedNode = .Nodes[0]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一世旳自豪 2024-07-23 20:11:00

使用 SynchronizationContext 将“调用”Post/Send 发送到 UI线。

Use SynchronizationContext to Post/Send "calls" to the UI thread.

心如荒岛 2024-07-23 20:11:00

在Winform控件上的BeginInvoke,要进行跨线程调用,将使用Window的消息队列,即FIFO。

BeginInvoke on a Winform control, to make a call across threads, will use the Window's message queue, which is FIFO.

夏见 2024-07-23 20:11:00

如果您有主窗体(或任何控件)的句柄,则可以使用 Control.Invoke / Control.BeginInvoke

如果您不想分发 Control 实例,您可以为外部代码提供一个 ISynchronizeInvoke 实例(任何控件都可以做到这一点,或者编写您自己的类包裹一个Control以防止调用者强制转换)。 然后调用者可以使用它来执行方法。

最后,考虑使用事件; 运行的代码会引发 UI 处理的事件; 然后,UI 可以在本地调用 Control.Invoke 来处理数据。

If you have a handle to the main form (or any control), you can use Control.Invoke / Control.BeginInvoke.

If you don't want to hand out a Control instance, you can give external code an ISynchronizeInvoke instance (any control will do it, or write your own class that wraps a Control to prevent caller-casting). Then the caller can use this to perform methods.

Finally, consider using events; the running code raises events that your UI handles; the UI can then call Control.Invoke locally to process the data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文