C#中 ContextMenuStrip 右击事件 如何从右键改成左键?
答案:2 悬赏:40 手机版
解决时间 2021-03-22 08:15
- 提问者网友:容嬷嬷拿针来
- 2021-03-21 14:32
C#中 ContextMenuStrip 右击事件 如何从右键改成左键?
最佳答案
- 五星知识达人网友:野味小生
- 2021-03-21 16:00
给你最简单的办法: public Form1()
{
InitializeComponent();
this.MouseDown += new MouseEventHandler(Form1_MouseDown);
} void Form1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
contextMenuStrip1.Show(this,e.Location);
}
}
{
InitializeComponent();
this.MouseDown += new MouseEventHandler(Form1_MouseDown);
} void Form1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
contextMenuStrip1.Show(this,e.Location);
}
}
全部回答
- 1楼网友:归鹤鸣
- 2021-03-21 17:22
在按钮的MouseDown事件处理方法里检查按下的按钮是不是左键,如果是的话就弹出菜单。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯