以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 请高手帮忙:向目录树的节点执行鼠标左键. (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=20922) |
-- 作者:飞天 -- 发布时间:2012/6/23 21:08:00 -- 请高手帮忙:向目录树的节点执行鼠标左键. 我在窗口中的TextBox1控件中,当文本改变事件中设置了如下代码.意图通过TextBox1控件中的内容定位到目录树子节点 Dim trv As WinForm.TreeView = e.Form.Controls("TreeView1") Dim txt As String = e.Form.Controls("TextBox1").text For Each nd As WinForm.TreeNode In trv.AllNodes If nd.text.Contains(txt) Then trv.SelectedNode = nd \'当找到对应的节点时,选定他, 我现在需要的是,当找到该节点后,执行鼠标左键.请教如何做? Return End If Next |
-- 作者:sloyy -- 发布时间:2012/6/24 2:19:00 -- 在AfterSelectNode 事件里写代码 |