MouseWheelEventArgs 类

定义

为报告鼠标设备的鼠标滚轮增量值更改的各事件提供数据。

public ref class MouseWheelEventArgs : System::Windows::Input::MouseEventArgs
public class MouseWheelEventArgs : System.Windows.Input.MouseEventArgs
type MouseWheelEventArgs = class
    inherit MouseEventArgs
Public Class MouseWheelEventArgs
Inherits MouseEventArgs
继承

示例

以下示例TextBox在鼠标滚轮为正数时向上移动 ,如果鼠标滚轮DeltaDelta为负数,则向下移动 TextBox 。 附加到 TextBoxCanvas

// Moves the TextBox named box when the mouse wheel is rotated.
// The TextBox is on a Canvas named MainCanvas.
private void MouseWheelHandler(object sender, MouseWheelEventArgs e)
{
    // If the mouse wheel delta is positive, move the box up.
    if (e.Delta > 0)
    {
        if (Canvas.GetTop(box) >= 1)
        {
            Canvas.SetTop(box, Canvas.GetTop(box) - 1);
        }
    }

    // If the mouse wheel delta is negative, move the box down.
    if (e.Delta < 0)
    {
        if ((Canvas.GetTop(box) + box.Height) <= (MainCanvas.Height))
        {
            Canvas.SetTop(box, Canvas.GetTop(box) + 1);
        }
    }
}
' Moves the TextBox named box when the mouse wheel is rotated.
' The TextBox is on a Canvas named MainCanvas.
Private Sub MouseWheelHandler(ByVal sender As Object, ByVal e As MouseWheelEventArgs)
    ' If the mouse wheel delta is positive, move the box up.
    If e.Delta > 0 Then
        If Canvas.GetTop(box) >= 1 Then
            Canvas.SetTop(box, Canvas.GetTop(box) - 1)
        End If
    End If

    ' If the mouse wheel delta is negative, move the box down.
    If e.Delta < 0 Then
        If (Canvas.GetTop(box) + box.Height) <= MainCanvas.Height Then
            Canvas.SetTop(box, Canvas.GetTop(box) + 1)
        End If
    End If

End Sub

注解

MouseWheelEventArgs 与以下事件一起使用:

Delta如果鼠标滚轮向上或向前移动 (远离用户) ,则属性为正数;如果鼠标滚轮向下或向后移动,则属性为正 (向用户) 。

即使鼠标滚轮移动较小,也会引发此事件。 对于某些方案,适合实现处理程序,通过检查增量是否超过特定阈值来限制小鼠标滚轮增量。 否则,如果鼠标滚轮增量太小,以至于与鼠标滚轮移动相关的任何 UI 都不会更新,则可以调用处理程序。 在处理程序中实现阈值行为的确切方式以及该阈值应是什么完全特定于实现。

构造函数

MouseWheelEventArgs(MouseDevice, Int32, Int32)

初始化 MouseWheelEventArgs 类的新实例。

属性

Delta

获取指示鼠标滚轮变更量的值。

Device

获取启动此事件的输入设备。

(继承自 InputEventArgs)
Handled

获取或设置一个值,该值指示针对路由事件(在其经过路由时)的事件处理的当前状态。

(继承自 RoutedEventArgs)
LeftButton

获取鼠标左键的当前状态。

(继承自 MouseEventArgs)
MiddleButton

获取鼠标中键的当前状态。

(继承自 MouseEventArgs)
MouseDevice

获取与此事件关联的鼠标设备。

(继承自 MouseEventArgs)
OriginalSource

在父类进行任何可能的 Source 调整之前,获取由纯命中测试确定的原始报告源。

(继承自 RoutedEventArgs)
RightButton

获取鼠标右键的当前状态。

(继承自 MouseEventArgs)
RoutedEvent

获取或设置与此 RoutedEventArgs 实例关联的 RoutedEvent

(继承自 RoutedEventArgs)
Source

获取或设置对引发事件的对象的引用。

(继承自 RoutedEventArgs)
StylusDevice

获取与此事件关联的触笔设备。

(继承自 MouseEventArgs)
Timestamp

获取此事件发生时的时间。

(继承自 InputEventArgs)
XButton1

获取第一个鼠标扩展按钮的当前状态。

(继承自 MouseEventArgs)
XButton2

获取第二个鼠标扩展按钮的当前状态。

(继承自 MouseEventArgs)

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetPosition(IInputElement)

返回相对于指定元素的鼠标指针位置。

(继承自 MouseEventArgs)
GetType()

获取当前实例的 Type

(继承自 Object)
InvokeEventHandler(Delegate, Object)

以特定于类型的方式调用事件处理程序,这样做可以提高事件系统效率。

MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
OnSetSource(Object)

在派生类中重写时,每当实例的 Source 属性的值发生更改,则提供一个通知回调入口点。

(继承自 RoutedEventArgs)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于

另请参阅