DevExpress控件的实现

DevExpress控件的实现

DevExpress需要用到BarManager、PopMenu两个控件,指定PopMenu的manager属性为BarManager,然后对popmenu做Customize,最后在控件的mouseup事件中进行编码显示右键菜单。其中要点是能如何在鼠标点击的位置显示右键菜单。

下面是代码示例:

--------------------------------------------------------------------------------------------

if(e.Button == MouseButtons.Right)
                      {
                              popupMenu1.ShowPopup(dataGridView1.PointToScreen(e.Location));
                      }

你可能感兴趣的:(DevExpress)