WinForm递归绑定TreeView

[c-sharp]  view plain copy print ?
  1. ///   
  2. /// 所有地区泛型对象  
  3. ///   
  4. IList areaList = new List();  
  5.         private void BindArea(string cityNo,TreeNodeCollection nodes, int level)  
  6. {  
  7.     List list = new List();  
  8.     foreach (AreaTInfo ai in areaList)  
  9.     {  
  10.         if (ai.F_AreaSN==cityNo)  
  11.         {  
  12.             list.Add(ai);  
  13.         }  
  14.     }  
  15.     level = level + 1;  
  16.     foreach (AreaTInfo item in list)  
  17.     {  
  18.         TreeNode tnc = new TreeNode();  
  19.         tnc.Text = item.AreaName;  
  20.         tnc.Tag = item.AreaSN;  
  21.         BindArea(item.AreaSN,tnc.Nodes, level);  
  22.         nodes.Add(tnc);  
  23.     }  
  24. }  
 

 

调用方法:

 

            areaList = _proxy.GetAreaInfo().ToList() ;

            BindArea("410000",this.treeView1.Nodes, 0);

            treeView1.ExpandAll();     /*这句是展开所有节点*/


你可能感兴趣的:(WinForm)