委托具有多个签名的方法
如何向线程添加带签名的方法?
我正在尝试使用方法 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您遇到的问题是您无法从 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.