我有 3 个列表框,在 MouseDown 事件中,我希望它们显示相同的上下文菜单,但在每次不同的列表框单击时,项目都会有所不同。例如:
- contextMenu when clicked on :listBox1
* should show: {Edit,Add Items}
- contextMenu when clicked on :listBox2
* should show: {Remove, Add Price}
- contextMenu when clicked on :listBox3
* should show: {something, Remove}
以下是我用于 listBox1 的代码:
private void MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
listBx_1.SelectedIndex = listBx_1.IndexFromPoint(e.Location);
if (listBx_1.SelectedIndex != -1)
{
listboxContextMenu_Opening();
}
}
}
private void listboxContextMenu_Opening()
{
listboxContextMenu.Items.Clear();
listboxContextMenu.Items.Add("Edit");
listboxContextMenu.Items.Add("Add Items");
}
现在我想使用 MouseDown 事件添加 listBox2 和 listBox3 上下文菜单(所有三个 listBoxes 的相同菜单)项目,我该如何实现呢?欢迎提出建议!!