Foxtable(狐表)用户栏目专家坐堂 → [求助] 树节点删除问题


  共有1975人关注过本帖树形打印复制链接

主题:[求助] 树节点删除问题

帅哥哟,离线,有人找我吗?
大红袍
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2016/6/28 16:44:00 [显示全部帖子]

Dim trv As WinForm.TreeView = e.Form.Controls("TreeView1")
Dim nd As WinForm.TreeNode
trv.Nodes.Clear
trv.Nodes.Add("按钮","按钮")
trv.Nodes.Add("数据表","数据表")
trv.Nodes.Add("单选框","单选框")
trv.Nodes.Add("复选框","复选框")
nd = trv.Nodes(0)
nd.nodes.Add("按钮1","按钮1")
nd = trv.Nodes(1)
nd.nodes.Add("数据表1","数据表1")
Dim ls As new List(of object)
For Each nd In trv.Nodes
    MessageBox.Show(nd.text & "=" & nd.Nodes.Count )
    If nd.Nodes.Count = 0 Then
        ls.add(nd)
    End If
Next
For Each nd In ls
    nd.delete
next

 回到顶部