例如,有.Name
,.Text
字段。如果我需要Type
和字段怎么办Path
,Direction
如何将它们添加到类中TreeNode
?
问问题
4405 次
1 回答
2
这是否满足您的意图?我已将这些显示为属性,但省略 {get;set;} 并且您将拥有字段。
class myTreeNode : System.Windows.Forms.TreeNode
{
public string NodeType { get; set; }
public string NodePath { get; set; }
public string Direction { get; set; }
}
要将 myTreeNode 实例添加到 TreeView,您可以这样做:
myTreeNode node = new myTreeNode();
treeview1.Nodes.Add(node);
如果您想使用 Tag 属性而不是将这些直接存储在继承的节点中,(仅显示两个属性而不是 3 个)
class NodeTag
{
public NodeTag(string path, string direction)
{
NodePath = path;
Direction = direction;
}
public string Direction {get;set;}
}
然后,在创建树的代码中,您将执行以下操作:
TreeNode node = new TreeNode();
node.Tag = new NodeTag("my path", "South");
treeView1.Nodes.Add(node);
于 2012-09-12T15:45:04.170 回答