Foxtable(狐表)用户栏目专家坐堂 → 目录树菜单


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

主题:目录树菜单

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/1/25 23:08:00 [显示全部帖子]

Select Case e.Node.Text
    Case "工序记录表"
        Forms("工序记录表").Open()
        MainTable = Tables("工序跟踪表")
End Select

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/1/26 9:02:00 [显示全部帖子]

msgbox(e.node.text)
Select Case e.Node.Text
    Case "工序记录表"
        msgbox(123)
        Forms("工序记录表").Open()
        MainTable = Tables("工序跟踪表")
End Select

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/1/26 9:29:00 [显示全部帖子]

换种方式吧,改成控制背景颜色

 

static pnd As object
Dim tree As windows.Forms.treeview = e.sender.basecontrol
Dim x As Integer = System.Windows.Forms.Cursor.Current.Position.X
Dim y As Integer = System.Windows.Forms.Cursor.Current.Position.Y
Dim pt = tree.PointToClient(new Point(X, Y))  '取当前坐标
Dim nd As System.Windows.Forms.TreeNode = tree.GetNodeAt(pt) '取坐标所在位置的节点
If nd Is Nothing OrElse pnd Is Nothing OrElse pnd.name <> nd.name Then
    For Each nnd As WinForm.TreeNode In e.Sender.AllNodes
        nnd.BackColor = color.white
        nnd.ForeColor = color.black
    Next
   
    If nd IsNot Nothing
        nd.BackColor = color.red
        nd.ForeColor = color.yellow
    End If
End If
pnd = nd


 回到顶部