TreeList属性设置以及右键菜单实现
Posted yoursixuncle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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); } }
}
以上是关于TreeList属性设置以及右键菜单实现的主要内容,如果未能解决你的问题,请参考以下文章
[Dev]DevExpress之treelist右键菜单实现