委托具有多个签名的方法

发布于 2024-12-13 23:54:31 字数 358 浏览 0 评论 0原文

如何向线程添加带签名的方法?

我正在尝试使用方法 testAdd(DirectoryEntry d, TreeNode t) 将项目添加到 TreeView GUI,

我按照正常创建线程的方式进行操作:

Thread t1;
t1 = new Thread(new ThreadStart(testAdd(directory,rootNode));t1.Start();
t1=new Thread(delegate() {testAdd(directory, rootNode);})
t1.start();

我收到错误,告诉我使用调用。

如何解决这个问题?

How do I add a method with signature to a thread?

I'm trying to add an item to TreeView GUI using a method testAdd(DirectoryEntry d, TreeNode t)

I did it as normal creation of a thread:

Thread t1;
t1 = new Thread(new ThreadStart(testAdd(directory,rootNode));t1.Start();
t1=new Thread(delegate() {testAdd(directory, rootNode);})
t1.start();

I get error telling me to use invoke.

How can this be solved?

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

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

发布评论

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

评论(1

眼眸里的那抹悲凉 2024-12-20 23:54:31

您遇到的问题是您无法从 WinForms 应用程序中的后台线程访问 UI 元素。您使用的签名没有任何问题,您只是在 UI 元素上执行了非法操作。 UI 元素的实际突变必须发生在应用程序的 UI/主线程上。新的 Thread 实例保证这不会是真的。

可以计算要在后台线程上添加的内容,然后使用 Invoke 返回 UI 线程。但实际的添加必须发生在 UI 上。

The problem you're running into is that you can't access UI elements from a background thread in a WinForms application. There is nothing wrong with the signature you're using you're just doing an illegal operation on the UI element. The actual mutation of the UI element must occur on the UI / Main thread of the application. A new Thread instance guarantees this won't be true.

It's possible to do the work to calculate what you will add on a background thread and then use Invoke to get back to the UI thread. But the actual add must happen on the UI.

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