TreeView中清空所有内容用什么方法
TreeView中清空所有内容用什么方法,所有结点中动态添加的,我要把所有节点又用程序删除 --------------------编程问答-------------------- TreeView.Nodes.Clear(); --------------------编程问答-------------------- 1楼正解 --------------------编程问答-------------------- treeView1.Nodes.Clear(); --------------------编程问答-------------------- 不行呀。同志们,我用的是C#public void updatetreeview()
{
this.treeView1.BeginUpdate();
this.treeView1.Nodes.Clear();
foreach(DataRow row1 in ds.Tables["department"].Rows)
{
动态添加的结点
}
this.treeView1.endUpdate();
}
--------------------编程问答-------------------- this.treeView1.Nodes.Clear();
应该可以的 你再试试 --------------------编程问答-------------------- 还是不行啊 --------------------编程问答-------------------- this.treeView1.Nodes.Clear(); --------------------编程问答-------------------- 哦,易做图
你的Clear应该放在最后才有效。这么久也不结贴?
补充:.NET技术 , C#