• TreeView数据绑定的方法(1)


    TreeView数据绑定的方法(1)
    最近作一个.net程序中涉及到权限的分配和管理,要把分为不同层次的权限从数据库中读出在树形控件TreeView中显示出来。这里采取的是首先取出数据放在DataTable中,然后在递归查询中根据不同的filter条件得到对应树杈需要的数据。这里使用类似的行政区划的数据表,数据表为:
    Create TABLE [dbo].[QuHua] (
    [ID] [int] IDENTITY (1, 1) NOT NULL ,--自增的标记列
    [NAME] [varchar] (50) COLLATE Chinese_PRC_CI_AS NOT NULL ,--行政区划的名称
    [ParentID] [int] NOT NULL --行政区划的上一级区划ID,最高级区划的上一级默认为0
    ) ON [PRIMARY]
    GO

    ---插入测试数据
    Insert Into dbo.QuHua (NAME,ParentID) Values ('北京',0)
    Insert Into dbo.QuHua (NAME,ParentID) Values ('山东',0)
    Insert Into dbo.QuHua (NAME,ParentID) Values ('河北',0)
    Insert Into dbo.QuHua (NAME,ParentID) Values ('海淀',1)
    Insert Into dbo.QuHua (NAME,ParentID) Values ('中关村',4)
    Insert Into dbo.QuHua (NAME,ParentID) Values ('济宁',2)
    Insert Into dbo.QuHua (NAME,ParentID) Values ('曲阜',6)
    Insert Into dbo.QuHua (NAME,ParentID) Values ('济南',2)

    程序代码 程序代码
    /**//// <summary>
           /// 根据递归查询结果动态生成TreeView
           /// 由于算法效率问题,不适合数据量的情况
           /// </summary>
            private void CreateTreeView()
            {
                string connetion = "Data Source=. ;Initial Catalog=MIS_New;Integrated Security=True";
                using (SqlConnection cn = new SqlConnection(connetion))
                {
                    cn.Open();
                    SqlDataAdapter da = new SqlDataAdapter("select * from QuHua", cn);
                    DataTable dt = new DataTable();
                    da.Fill(dt);
                    //首先把第一级的行政区划取出生成TreeView的节点
                    //作为递归运算的入口
                    CreateTreeViewRecursive(treeView1.Nodes, dt, 0);
                }

            }
            /**//// <summary>
            /// 递归查询
            /// </summary>
            /// <param name="nodes">TreeView的节点集合</param>
            /// <param name="dataSource">数据源</param>
            /// <param name="parentid">上一级行政区划的标识码</param>
            private void CreateTreeViewRecursive(TreeNodeCollection nodes,DataTable dataSource,int parentid)
            {
                string filter;
                filter = string.Format("parentid={0}", parentid);
                DataRow[] drarr = dataSource.Select(filter);
                TreeNode node;
                foreach (DataRow dr in drarr)
                {
                    node = new TreeNode();
                    node.Text = (string)dr["name"];
                    node.Tag = (int)dr["id"];
                    nodes.Add(node);
                    CreateTreeViewRecursive(node.Nodes,dataSource,(int)node.Tag);
                }

            }

          
    来源:http://www.cnblogs.com/collum/archive/2008/05/10/1076617.html

  • 相关阅读:
    js进阶 12-7 pageY和screenY以及clientY的区别是什么
    printf交替使用
    【iOS发展-81】setNeedsDisplay刷新显卡,并CADisplayLink它用来模拟计时器效果
    android tv 全屏幕垂直画
    uva 10305
    (札记)Java应用架构设计-模块化模式与OSGi
    《学习opencv》笔记——矩阵和图像处理——cvAnd、cvAndS、cvAvg and cvAvgSdv
    一旦专利
    SharePoint 2010 升级到2013时间 为了确保用户可以连接,但无法改变升级数据
    [TroubleShooting] The remote copy of database xx has not been rolled forward to a point in time
  • 原文地址:https://www.cnblogs.com/sontin/p/1929805.html
Copyright © 2020-2023  润新知