我有这个功能谁抓住了右键单击
private void listBoxFiles_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
contextMenuStripListBox.Show((Control)sender, e.X, e.Y);
}
}
答案 0 :(得分:0)
MouseEventArgs的文档中有一个示例:
if (e.Button == MouseButtons.Right)
{
...do your stuff
}
答案 1 :(得分:0)
您的意思是您要在列表框中添加条目?
使用:
ListBox.Items.Add("My content here");
如果要更改右键单击操作的上下文菜单,请查看本指南:
http://msdn.microsoft.com/en-us/library/aa984319%28v=vs.71%29.aspx