当前位置: 首页 > 工具软件 > PopMenu > 使用案例 >

DevExpress PopMenu 如何在鼠标点击的位置显示右键菜单

濮献
2023-12-01

DevExpress控件的实现

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

下面是代码示例:

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

if(e.Button == MouseButtons.Right)
{
popupMenu1.ShowPopup(dataGridView1.PointToScreen(e.Location));
}
 类似资料: