Visual C#表单右键单击按钮

Posted

tags:

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

我正在尝试在visual c#中制作一个扫雷型游戏,我希望在我右键单击并左键单击按钮时会发生不同的事情,我该怎么做?

我试过这段代码,但它只注册了左键点击:

    private void button1_MouseClick(object sender, MouseEventArgs e)
    {
        if (e.Button == System.Windows.Forms.MouseButtons.Left)
        {
            MessageBox.Show("Left");
        }
        if (e.Button == System.Windows.Forms.MouseButtons.Right)
        {
            MessageBox.Show("Right");
        }

    }
答案

您将不得不使用MouseUpMouseDown事件而不是Click事件来捕获右键单击。

另一答案

只需尝试使用button1_MouseDown事件而不是button1_MouseClick事件。它将解决您的问题。

 private void button1_MouseDown(object sender, MouseEventArgs e)
    {
        if (e.Button == MouseButtons.Left)
        {
          //do something
        }
        if (e.Button == MouseButtons.Right)
        {
          //do something
        }
    }
另一答案

按钮只对MouseButtons.Left作出反应,而不是对MouseButton.Right反应,甚至对中间反应。

void Select(object sender, MouseEventArgs e)
{
    /* var btn = sender as CardButton;*/

    if (e.Button == MouseButtons.Left)
    {
        if (this.Selected == false)
        { 
            this.Selected = true;
        }
        else
        {
            this.Selected = false;
        }
    }
    if (e.Button == MouseButtons.Right)
    {
        if (this.Selected == false)
        {
            this.Selected = true;
        }
        else
        {
            this.Selected = false;
        }
    }

    Draw();
}

以上是关于Visual C#表单右键单击按钮的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

Visual Studio错误无法打开表单的源代码

右键单击文件夹后未出现 Visual Studio Code“使用代码打开”

在 Visual Studio 调试器中打破按钮单击事件

如何从Android中的片段单击按钮打开片段

导航抽屉活动:在按钮单击时从片段移动到片段