隐藏弹出菜单的最佳方法
本文关键字:最佳 方法 菜单 隐藏 | 更新日期: 2023-09-27 18:31:12
我有一个控件,可以在右键单击时创建一个弹出菜单,我需要在左键单击时关闭它的最佳方法。除了在我的应用程序中处理每个控件的 mouseDown 事件外,关闭弹出菜单的最佳方法是什么?
就像全局鼠标点击事件一样。
private void lbKeywords_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
listBoxMenu.ShowPopup(Cursor.Position);
}
}
作为答案:尝试询问DevExpress或查看他们的支持页面 - 即我在快速搜索后找到了这个:devexpress.com/Support/Center/p/CQ14210.aspx