csharp 右键单击显示ListView菜单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 右键单击显示ListView菜单相关的知识,希望对你有一定的参考价值。

if (e.Button == System.Windows.Forms.MouseButtons.Right)
{
    ListViewItem item = listView.GetItemAt(e.X, e.Y);
    if (item != null)
    {
        item.Selected = true;
        contextMenuStrip1.Show(listView , e.Location);
    }
}

以上是关于csharp 右键单击显示ListView菜单的主要内容,如果未能解决你的问题,请参考以下文章

WPF 根据指定条件显示或禁止listView中的每一项的右键菜单

C# 系统应用之ListView控件 .添加ContextMenuStrip右键菜单打开删除文件

JList 右键单击​​显示菜单(使用、删除、取消)

关于treelist右键菜单问题,已经单击显示问题

关于FMX 单击出来右键菜单,并显示在当前下面

右键单击列表视图以显示 contextmenustrip,但弹出菜单出现在屏幕的不相关点