4

我有一个TreeViewWinForm 应用程序,我正在使用add,reorderdelete方法来添加新节点、重新排序现有节点和删除旧注释。

有时当我添加一个新项目时,它会立即在 中显示TreeView,但是当我添加下一个节点时它会正确显示它似乎是随机发生的,因此很难找到根本原因。

即使节点未在 UI 中正确显示,节点计数也是正确的。

TreeView1.BeginUpdate();
TreeView1.Nodes.Add("P1", "Parent");

foreach(User u in items)
{
    if( condition)
    {
        node.Text =u.sNodeText; 
        node.Tag = u;
        node.Text = u.sNodeText;                    
        GetChildren(node);
        TreeView1.Nodes["P1"].Nodes.Add((TreeNode)node.Clone());
    }
}            
TreeView1.ExpandAll();
TreeView1.EndUpdate();           
TreeView1.Refresh(); 

谁能回答这个问题?我认为这个问题并非毫无意义。这是 GetChildren 方法。

     private void GetChildren(TreeNode node)
    {
        TreeNode Node = null;
        User nodeCat = (User)node.Tag;

        foreach (User  cat in items)
        {
            if (cat.sParentID == nodeCat.sID)
            {
                Node = node.Nodes.Add(cat.sNodeText);
                Node.Tag = cat;
                GetChildren(Node);
            }
        }
4

4 回答 4

3

你试过Invalidate()Refresh()吗?Refresh 只重绘客户端区域,而 Invalidate 重绘整个控件。这只是在黑暗中拍摄......我以前从未遇到过这个问题。

于 2012-07-12T05:22:21.037 回答
1

首先,调用 GetChildren 方法后,为什么还要将节点添加到树中?如果它的 parentID 为空(或 null 或 0,取决于它的类型),你应该只将它添加到树中。此外,将EnsureVisible方法添加到新添加的节点,并删除克隆:

...
    if (u.sParentID==null)
    {
    TreeView1.Nodes["P1"].Nodes.Add(node); 
    node.EnsureVisible();
    }
...

希望这可以帮助

于 2012-07-12T15:15:57.213 回答
1

如果我没记错的话是不是有

TreeView1.BeginUpdate() method that you could use and at the end utilize the 
TreeView1.EndUpdate();
于 2012-07-12T20:29:56.633 回答
1

我认为这可能与使用 Clone 有关,它会产生浅拷贝。由于使用了 Add 方法,节点计数会更新,但“新”节点仍然具有创建它的节点的引用,因此它不是唯一对象。尝试创建一个深层副本,看看效果如何。

例如:

public TreeNode DeepNodeClone(TreeNode src)
{
MemoryStream ms = new MemoryStream();
BinaryFormatter bf = new BinaryFormatter();
bf.Serialize(ms, src);
ms.Position = 0;
object obj = bf.Deserialize(ms);
ms.Close();
return (TreeNode)obj;
}

然后将此节点作为子节点添加到所需的父节点。

于 2012-07-17T03:51:13.040 回答