我必须完全禁用Windows窗体上的鼠标滚轮以及其中包含的每个控件,我已尝试使用事件鼠标滚轮,但它无法正常工作:
this.MouseWheel += new MouseEventHandler(Form_MouseWheel);
private void Form_MouseWheel(object sender, MouseEventArgs e) {
((HandledMouseEventArgs)e).Handled = true;
}
如何在Windows窗体及其内部的每个控件中完全禁用鼠标滚轮?