随笔 - 850  文章 - 37  评论 - 173  阅读 - 287万

DevExpress右键菜单使用 zt

添加BarManager和popupMenu组建:

 

 

设置popupMenu组件的Manager属性:

 

 

右键点击popupMenu主键,点击Customize选项添加菜单:

 
 

 然后便可添加到鼠标事件中,此处以TreeList为例:

复制代码
1.private void treeList1_MouseUp(object sender, MouseEventArgs e)   
2.{   
3.    TreeList tree = sender as TreeList;   
4.    if (e.Button == MouseButtons.Right    
5.            && ModifierKeys == Keys.None   
6.            && treeList1.State == TreeListState.Regular)   
7.    {   
8.        Point p = new Point(Cursor.Position.X, Cursor.Position.Y);   
9.        TreeListHitInfo hitInfo = tree.CalcHitInfo(e.Location);   
10.        if (hitInfo.HitInfoType == HitInfoType.Cell)   
11.        {   
12.            tree.SetFocusedNode(hitInfo.Node);   
13.        }   
14.  
15.        if (tree.FocusedNode != null)   
16.        {   
17.            popupMenu1.ShowPopup(p);   
18.        }   
19.    }   
20.}
复制代码

 

posted on   武胜-阿伟  阅读(494)  评论(0编辑  收藏  举报
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示