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

適用於

另請參閱