C# ListBox 鼠标右键菜单的问题
源代码privatevoidlistBox1_MouseDown(objectsender,MouseEventArgse)//在listBox1中按下鼠标的响应{boo...
源代码
private void listBox1_MouseDown(object sender, MouseEventArgs e) //在listBox1中按下鼠标的响应
{
bool rightdown = false;
if (e.Button == MouseButtons.Right) //如果为右击则在当前鼠标位置附加一次单击
{
rightdown = true;
mouse_event(MouseEventFlag.LeftDown | MouseEventFlag.LeftUp, 0, 0, 0, UIntPtr.Zero); //出现问题的位置……
listBox1.ClearSelected();
}
if (rightdown) //如果为右击且右击位置上有listbox的item则弹出右键菜单
{
if (listBox1.SelectedIndex != 0)
{
int x = this.MdiParent.Location.X + this.Location.X + listBox1.Location.X + e.X + 18;
int y = this.MdiParent.Location.Y + this.Location.Y + listBox1.Location.Y + e.Y + 60;
RightMenu(x, y, '1');
}
}
}
private void RightMenu(int x, int y,char type)
{
listbox1menu.Show(x, y);
}
问题出现了,现在以上代码能够实现右击选中listbox的item ,但是右键菜单弹出后会立即消失,就像多了一次单击一样,如果去掉上面注释有问题的一行就没法通过右键选中listbox的item囧……咋解决啮~ 展开
private void listBox1_MouseDown(object sender, MouseEventArgs e) //在listBox1中按下鼠标的响应
{
bool rightdown = false;
if (e.Button == MouseButtons.Right) //如果为右击则在当前鼠标位置附加一次单击
{
rightdown = true;
mouse_event(MouseEventFlag.LeftDown | MouseEventFlag.LeftUp, 0, 0, 0, UIntPtr.Zero); //出现问题的位置……
listBox1.ClearSelected();
}
if (rightdown) //如果为右击且右击位置上有listbox的item则弹出右键菜单
{
if (listBox1.SelectedIndex != 0)
{
int x = this.MdiParent.Location.X + this.Location.X + listBox1.Location.X + e.X + 18;
int y = this.MdiParent.Location.Y + this.Location.Y + listBox1.Location.Y + e.Y + 60;
RightMenu(x, y, '1');
}
}
}
private void RightMenu(int x, int y,char type)
{
listbox1menu.Show(x, y);
}
问题出现了,现在以上代码能够实现右击选中listbox的item ,但是右键菜单弹出后会立即消失,就像多了一次单击一样,如果去掉上面注释有问题的一行就没法通过右键选中listbox的item囧……咋解决啮~ 展开
展开全部
private void listbox_MouseDown(object sender, MouseEventArgs e)//listbox项右键
{
ListBox ltb = (ListBox)sender;//获取点击的项
if (e.Button == MouseButtons.Right)//判断是否为右击
{
int posindex = ltb.IndexFromPoint(new Point(e.X,e.Y));//获取点击的位置的索引
ltb.ContextMenuStrip = null;//将控件原有菜单清除,原来没有的话可以省略
if(posindex>=0&&posindex<ltb.Items.Count)//判断是否在listbox已有项中
{
ltb.SelectedIndex=posindex;//定位到这一项
ContextMenuStrip.Show(ltb,new Point(e.X,e.Y));//对这个项弹出右键菜单
}
}
ltb.Refresh();
}
亲手做的 你看一下 希望能帮到你
{
ListBox ltb = (ListBox)sender;//获取点击的项
if (e.Button == MouseButtons.Right)//判断是否为右击
{
int posindex = ltb.IndexFromPoint(new Point(e.X,e.Y));//获取点击的位置的索引
ltb.ContextMenuStrip = null;//将控件原有菜单清除,原来没有的话可以省略
if(posindex>=0&&posindex<ltb.Items.Count)//判断是否在listbox已有项中
{
ltb.SelectedIndex=posindex;//定位到这一项
ContextMenuStrip.Show(ltb,new Point(e.X,e.Y));//对这个项弹出右键菜单
}
}
ltb.Refresh();
}
亲手做的 你看一下 希望能帮到你
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
e.Handled=True;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询