请高手帮忙:向目录树的节点执行鼠标左键. Post By: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