C#-WinForm-Treeview-树状模型

Posted 野性狼心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#-WinForm-Treeview-树状模型相关的知识,希望对你有一定的参考价值。

Treeview - 树状模型

利用递归添加数据

数据放入 treeView1.Nodes.Add() 中

        public Form3()
        {
            InitializeComponent();

            TreeNode t1 = new TreeNode("中国");

            TreeNode t2 = new TreeNode("北京");

            TreeNode t3 = new TreeNode("朝阳区");

            t2.Nodes.Add(t3);

            t1.Nodes.Add(t2);

            treeView1.Nodes.Add(t1);
        }
View Code

问题是,地区代号在哪里了?——tag 与对象关联的用户定义数据

==================================================

public partial class Form3 : Form
    {
        List<China> alllist = new List<China>();

        public Form3()
        {
            InitializeComponent();

            alllist = new ChinaData().Select();

            TreeNode tn1 = new TreeNode("中国");
            tn1.Tag = "0001";

            NodesBind(tn1);

            treeView1.Nodes.Add(tn1);
            
        }

        public void NodesBind(TreeNode tn)
        {
            List<China> clist = alllist.Where(r => r.ParentAreaCode == tn.Tag.ToString()).ToList();

            foreach (China c in clist)
            {
                TreeNode tnn = new TreeNode(c.AreaName);
                tnn.Tag = c.AreaCode;

                //递归
                NodesBind(tnn);

                tn.Nodes.Add(tnn);
            }
        }

    }
lambda表达式-最终代码

 

以上是关于C#-WinForm-Treeview-树状模型的主要内容,如果未能解决你的问题,请参考以下文章

java内存模型 年轻代/年老代 持久区

代写编程代写机器学习模型代写AI python

JVM : 6 JVM分代模型:年轻代老年代永久代

树状结构Java模型层级关系Java模型上下级关系Java模型与html页面展示

(R) 从 gbm.step 绘制树状图 BRT 模型

JVM系统优化实践:分代模型