InkCollectorMouseWheelEventHandler 委托

表示处理 InkCollector 对象的 MouseWheel 事件的方法。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Delegate Sub InkCollectorMouseWheelEventHandler ( _
    sender As Object, _
    e As CancelMouseEventArgs _
)
用法
Dim instance As New InkCollectorMouseWheelEventHandler(AddressOf HandlerMethod)
public delegate void InkCollectorMouseWheelEventHandler(
    Object sender,
    CancelMouseEventArgs e
)
public delegate void InkCollectorMouseWheelEventHandler(
    Object^ sender, 
    CancelMouseEventArgs^ e
)
/** @delegate */
public delegate void InkCollectorMouseWheelEventHandler(
    Object sender,
    CancelMouseEventArgs e
)
JScript 不支持委托。

参数

备注

创建 InkCollectorMouseWheelEventHandler 委托时,需要标识将处理该事件的方法。若要将该事件与事件处理程序关联,请将该委托的一个实例添加到事件中。除非移除了该委托,否则每当发生该事件时就会调用此事件处理程序。出于性能方面的原因,默认事件关注在托管代码 中处于关闭状态,但如果添加事件处理程序,它将自动打开。

示例

在此示例中,MouseWheel 事件激发时,所有笔画都按照鼠标滚轮的旋转量和方向滚动。

Private Sub mInkObject_MouseWheel(ByVal sender As Object, ByVal e As CancelMouseEventArgs)
    Using S As Strokes = mInkObject.Ink.Strokes
        If (S.Count > 0) Then
            S.Move(0, e.Delta)
            panelInkCanvas.Invalidate()
        End If
    End Using
End Sub
private void mInkObject_MouseWheel(object sender, CancelMouseEventArgs e)
{
    using (Strokes S = mInkObject.Ink.Strokes)
    {
        if (S.Count > 0)
        {
            S.Move(0, e.Delta);
            panelInkCanvas.Invalidate();
        }
    }
}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

Microsoft.Ink 命名空间

InkCollector.MouseDown

InkCollector.MouseMove

InkCollector.MouseUp