使 Controls.Add 方法调用成为线程安全的
假设我有以下代码:
public void Inject(Form subform)
{
this.tabControl1.TabPages[1].Controls.Add(subform);
this.Refresh();
}
如何使用 Control.Invoke
将 Controls.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保 Control.Add 线程安全的唯一方法是确保从 UI 线程调用它。这也意味着添加的
Control
可以从 UI 线程使用。下面是一个函数,它生成一个委托,该委托可以从任何线程添加到
Control
(假设添加的Control
在 UI 线程上没问题)。然后,对于给定的
Control
,您可以将生成的委托传递给任何线程。The only way to make
Control.Add
thread safe is to make sure it's called from the UI thread. This also implies that theControl
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 addedControl
is OK on the UI thread).Then for a given
Control
you can pass the resulting delegate to any thread.