C# 禁用鼠标中间键的方法_C#教程-查字典教程网
C# 禁用鼠标中间键的方法
C# 禁用鼠标中间键的方法
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:方法如下:声明一个事件:Num_DiscountAmount.MouseWheel+=newMouseEventHandl...

复制代码 代码如下:

方法如下:

声明一个事件:

Num_DiscountAmount.MouseWheel +=new MouseEventHandler(Num_DiscountAmount_MouseWheel);

编写一个事件

private void Num_DiscountAmount_MouseWheel(object sender, MouseEventArgs e)

{

HandledMouseEventArgs h = e as HandledMouseEventArgs;

if (h != null)

{

h.Handled = true;

}

}

还有 第三方控件DevExpress.XtraEditors.SpinEdit ,如何禁用鼠标中间键?

方法如下:

声明事件: (SpinEdit1.Controls[0] as DevExpress.XtraEditors.TextBoxMaskBox).MouseWheel += new MouseEventHandler(Frm_MouseWheel);

编写事件:

void Frm_MouseWheel(object sender, MouseEventArgs e)

{

if (e.Delta != 0)

DevExpress.Utils.DXMouseEventArgs.GetMouseArgs(e).Handled = true;

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新C#教程学习
    热门C#教程学习
    编程开发子分类