使 Controls.Add 方法调用成为线程安全的

发布于 2024-12-02 11:29:43 字数 239 浏览 0 评论 0原文

假设我有以下代码:

public void Inject(Form subform)
{
    this.tabControl1.TabPages[1].Controls.Add(subform);
    this.Refresh();
}

如何使用 Control.InvokeControls.Add() 调用转换为线程安全调用?

Let's say I have the following code:

public void Inject(Form subform)
{
    this.tabControl1.TabPages[1].Controls.Add(subform);
    this.Refresh();
}

How can I convert the Controls.Add() call to a thread-safe call, using Control.Invoke?

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

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

发布评论

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

评论(1

北方。的韩爷 2024-12-09 11:29:43

确保 Control.Add 线程安全的唯一方法是确保从 UI 线程调用它。这也意味着添加的 Control 可以从 UI 线程使用。

下面是一个函数,它生成一个委托,该委托可以从任何线程添加到 Control(假设添加的 Control 在 UI 线程上没问题)。

public Action<Control> GetAddControl(this Control c) 
{
  var context = SynchronizationContext.Current;
  return (control) =>
  {
     context.Send(_ => c.Controls.Add(control), null);
  };
}

然后,对于给定的Control,您可以将生成的委托传递给任何线程。

// From UI thread
Action<Control> addControl = c.GetAddControl();

// From background thread 
addControl(subForm);

The only way to make Control.Add thread safe is to make sure it's called from the UI thread. This also implies that the Control being added is usable from the UI thread.

Here is a function though which produces a delegate which can add to a Control from any thread (presuming the added Control is OK on the UI thread).

public Action<Control> GetAddControl(this Control c) 
{
  var context = SynchronizationContext.Current;
  return (control) =>
  {
     context.Send(_ => c.Controls.Add(control), null);
  };
}

Then for a given Control you can pass the resulting delegate to any thread.

// From UI thread
Action<Control> addControl = c.GetAddControl();

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