Stylus.PreviewStylusSystemGesture 附加事件
定義
使用者使用此手寫筆進行系統手勢時發生。Occurs when the user makes a system gesture with this stylus.
see AddPreviewStylusSystemGestureHandler, and RemovePreviewStylusSystemGestureHandler
see AddPreviewStylusSystemGestureHandler, and RemovePreviewStylusSystemGestureHandler
see AddPreviewStylusSystemGestureHandler, and RemovePreviewStylusSystemGestureHandler
範例
下列範例示範如何判斷引發事件的系統手勢 PreviewStylusSystemGesture 。The following example demonstrates how to determine the system gesture that raised the PreviewStylusSystemGesture event. 這個範例假設有一個 TextBox 呼叫 textBox1
,而且該 PreviewStylusSystemGesture 事件已連接到事件處理常式。This example assumes that there is a TextBox called textBox1
and that the PreviewStylusSystemGesture event is connected to the event handlers.
void textbox1_PreviewStylusSystemGesture(object sender, StylusSystemGestureEventArgs e)
{
textbox1.AppendText(e.SystemGesture.ToString() + "\n");
}
Private Sub textbox1_PreviewStylusSystemGesture(ByVal sender As Object, _
ByVal e As StylusSystemGestureEventArgs) Handles textbox1.PreviewStylusSystemGesture
textbox1.AppendText(e.SystemGesture.ToString() & vbLf)
End Sub
備註
這是附加事件。This is an attached event. WPFWPF 將附加事件實作為路由事件。implements attached events as routed events. 附加事件基本上是一種 XAMLXAML 語言概念,用來參考在不會定義事件的物件上處理的事件。An attached event is, fundamentally, a XAMLXAML language concept used to reference events that are handled on objects that do not, themselves, define events. WPFWPF 進一步擴充附加事件的功能,讓它能夠跨越路由。further expands an attached event's capabilities, allowing it to traverse a route. 附加事件在程式碼中沒有直接處理語法;若要在程式碼中附加路由事件的處理常式,請使用指定的 Add * 處理常式方法。Attached events do not have a direct handling syntax in code; to attach handlers for a routed event in code, use a designated Add*Handler method. 如需詳細資訊,請參閱 附加事件總覽。For details, see Attached Events Overview.
路由事件資訊Routed Event Information
識別碼欄位Identifier field | PreviewStylusSystemGestureEvent |
路由策略Routing strategy | 隧道Tunneling |
代理人Delegate | StylusSystemGestureEventHandler |