DevExpress 给TreeList添加右键菜单

 

只有在右击节点时才会触发

private void treeList1_MouseDown(object sender, MouseEventArgs e)
        {         

           if (e.Button == MouseButtons.Right)
            {
                treeList1.ContextMenuStrip = null;

                TreeListHitInfo hInfo = treeList1.CalcHitInfo(new Point(e.X, e.Y));
                TreeListNode node = hInfo.Node;
                treeList1.FocusedNode = node;
                if (node!=null)
                {
                    treeList1.ContextMenuStrip = contextMenuStrip1;
                }
            }

        }

 添加BarManager和popupMenu组建:

 

 

设置popupMenu组件的Manager属性:

 

DevExpress 给TreeList添加右键菜单_第1张图片

 

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


DevExpress 给TreeList添加右键菜单_第2张图片 
DevExpress 给TreeList添加右键菜单_第3张图片
 然后便可添加到鼠标事件中,此处以TreeList为例:


 

C#代码 复制代码  收藏代码
  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. }  

你可能感兴趣的:(object,manager,C#,null)