以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- TreeView NodeMouseDoubleClick (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=189905) |
-- 作者:yifan3429 -- 发布时间:2024/1/4 2:00:00 -- TreeView NodeMouseDoubleClick 动态增加的TreeView 怎么通过代码添加NodeMouseDoubleClick事件 全局事件没有NodeMouseDoubleClick Dim Bt As WinForm.TreeView Bt = e.Form.CreateControl("导航目录", ControlTypeEnum.TreeView) Bt.Name = "导航目录" Bt.Height = e.Form.Height Bt.Top = Butd.Height Bt.TopMost = True Bt.ShowPlusMinus = True Bt.ShowLines = True Bt.ItemHeight = 18 e.Form.AddControl(Bt) Bt.ToolTip = "根据导航目录加载数据" NodeMouseDoubleClick 用鼠标双击节点后执行。 e参数属性 Form: 触发事件的窗口 [此贴子已经被作者于2024/1/4 2:11:29编辑过]
|
-- 作者:有点蓝 -- 发布时间:2024/1/4 8:41:00 -- 动态增加的TreeView没有办法绑定事件。这种只能使用现成的TreeView |