Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何以线程安全的方式更改树视图节点的图像索引?TreeNode 类没有 Invoke() 方法。
您可以调用Invoke表单而不是组件本身。
Invoke
组件代码在表单的线程上执行,因此对组件的调用只是将操作委托给表单的线程。form.Invoke使用as 你会得到完全相同的结果form.component.Invoke。
form.Invoke
form.component.Invoke