Stylus.StylusSystemGesture 附加事件

定义

在用户使用此触笔生成系统笔势时发生。

see AddStylusSystemGestureHandler, and RemoveStylusSystemGestureHandler
see AddStylusSystemGestureHandler, and RemoveStylusSystemGestureHandler
see AddStylusSystemGestureHandler, and RemoveStylusSystemGestureHandler

示例

以下示例演示如何确定引发 事件的 StylusSystemGesture 系统手势。 此示例假定有一个名为 TextBoxtextBox1 的 ,并且 事件 StylusSystemGesture 已连接到事件处理程序。

private void textbox1_StylusSystemGesture(object sender, StylusSystemGestureEventArgs e)
{
    textbox1.AppendText(e.SystemGesture.ToString() + "\n");
}
Private Sub textbox1_StylusSystemGesture(ByVal sender As Object, _
    ByVal e As StylusSystemGestureEventArgs) Handles textbox1.StylusSystemGesture

    textbox1.AppendText(e.SystemGesture.ToString() & vbLf)

End Sub

注解

这是一个附加事件。 WPF 将附加事件实现为路由事件。 从本质上讲,附加事件是一种 XAML 语言概念,用于引用在本身不定义事件的对象上处理的事件。 WPF 进一步扩展了附加事件的功能,允许它遍历路由。 附加事件在代码中没有直接处理语法;若要在代码中附加路由事件的处理程序,请使用指定的 Add*Handler 方法。 有关详细信息,请参阅 附加事件概述

路由事件信息

标识符字段 StylusSystemGestureEvent
路由策略 鼓 泡
委托 StylusSystemGestureEventHandler

适用于

另请参阅