本文介绍了SelectedNode = .Nodes[0] 上的线程异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么会出现 System.Threading.ThreadStateException?
Why do i get System.Threading.ThreadStateException?
void setupTree(TreeView tv, MyObj o)
{
tv.Invoke((MethodInvoker)delegate
{
tv.Nodes.Clear();
tv.Nodes.Add("<root>").Tag = o;
tv.SelectedNode = tv.Nodes[0]; //it happens here
});
}
推荐答案
TreeView 的句柄已经创建了吗?
Has the TreeView had its handle created yet?
您能否发布一个简短但完整的程序来演示这一点?
Could you post a short but complete program to demonstrate this?
这篇关于SelectedNode = .Nodes[0] 上的线程异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!