青草幽幽

c# winform treeview最最基础的用法

电脑版发表于:2019/10/11 17:21

最基本的添加与添加子节点

public partial class Form2 : Form
{
    public Form2()
    {
        InitializeComponent();

        //最基本的添加
        treeView1.Nodes.Add("aaa");
        treeView1.Nodes.Add("bbb");

        //最基本的子节点添加
        TreeNode treeNode = new TreeNode("重庆");
        treeNode.Nodes.Add("沙坪坝");
        treeView1.Nodes.Add(treeNode);

    }
}

效果如下:

关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢