TreeList属性设置以及右键菜单实现
AllowSort = False,//关闭排序
AllowEdit = False//不能编辑
--------右键菜单实现
添加右键流程:
1.先在窗体上拖两个控件,分别是popupMenu和barManager
2.barManager中绑定form属性为当前窗体名称
3.点击barManager右键选择customize,可直接添加子菜单,如果需要有工具栏、菜单栏、状态栏、怎选择Designer,可添加,然后在选择customize,添加command命令,再command选中菜单中执行命令
4.绑定右键菜单事件:在MouseDown事件中处理事件
--右键菜单出现的位置
private void tlstEquipment_MouseClick(object sender, MouseEventArgs e) {if (e.Button == MouseButtons.Right) { System.Drawing.Point p = new System.Drawing.Point(MousePosition.X, MousePosition.Y); popupMenuTree.ShowPopup(p); } }
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步