我有这个代码:
private TreeNodeCollection treeCollection;
public Client(TcpClient c)
{
this.tcpClient = c;
this.tree = null;
this.treeCollection = new TreeNodeCollection();
this.treeCollection.Clear();
}
public void AddNode(string node)
{
this.treeCollection.Add(node);
}
this.treeCollection = new TreeNodeCollection();
返回The type 'System.Windows.Forms.TreeNodeCollection' has no constructors defined
如果我删除了这一行,我会得到永远不会分配 treeCollection 并且将始终为空...
Field 'Client.treeCollection' is never assigned to, and will always have its default value null
如何将 treeCollection 分配为新的 TreeNodeCollection,以便我可以使用我的 AddNode 方法向其添加节点?
最佳答案
TreeNodeCollection 具有内部工厂或构造函数,因此只能由 TreeView 控件使用。
但是……你不需要它。只需使用单个节点作为根节点。然后清除它的 child
rootNode.Nodes.Clear();
或者,如果必须,只需创建一个
List<TreeNode>
关于c# - "The type ' System.Windows.Forms.TreeNodeCollection ' has no constructors defined",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6600041/