未检测到MouseButtons.XButton1 / 2

时间:2014-09-13 09:30:38

标签: c# mono mouseclick-event

我试图在C#应用程序中使用我的额外鼠标按钮。使用以下代码可以正常使用三个标准鼠标按钮:

class Window:Form {
  public Window() {
    this.Width = 400;
    this.Height = 280;
    this.MouseDown += this.OnMouseDown;
  }

  public void OnMouseDown(Object sender, MouseEventArgs e) {
    this.Text = e.Button.ToString();
  }
}

但出于某种原因,我从两个额外的鼠标按钮中得不到任何东西,这些按钮应显示" XButton1"或" XButton2"。额外的按钮适用于在Firefox中导航。有没有我忽略的东西?任何帮助表示赞赏:)

eta:我在Ubuntu 14.04中使用MonoDevelop 4.0.12。

0 个答案:

没有答案