Stylus.PreviewStylusInAirMove 附加事件

定義

手寫筆在平板電腦的範圍內 (但未碰觸) 移動時發生。

see AddPreviewStylusInAirMoveHandler, and RemovePreviewStylusInAirMoveHandler
see AddPreviewStylusInAirMoveHandler, and RemovePreviewStylusInAirMoveHandler
see AddPreviewStylusInAirMoveHandler, and RemovePreviewStylusInAirMoveHandler

範例

下列範例示範如何判斷手寫筆位於哪個元素上。 這個範例假設有一textBox1個名為 TextBox 的 ,而且PreviewStylusInAirMove事件已連接到事件處理程式。

void Window1_PreviewStylusInAirMove(object sender, StylusEventArgs e)
{
    textbox1.AppendText(Stylus.DirectlyOver.ToString() + "\n");
}
Private Sub Window1_PreviewStylusInAirMove(ByVal sender As Object, _
    ByVal e As StylusEventArgs) Handles Me.PreviewStylusInAirMove

    Dim element As Object
    element = CType(Stylus.DirectlyOver, Object)
    textbox1.AppendText(element.ToString() & vbLf)

End Sub

備註

這是附加的事件。 WPF 會將附加事件實作為路由事件。 附加事件基本上是 XAML 語言概念,用來參考物件上未處理的事件本身定義事件。 WPF 會進一步擴充附加事件的功能,讓它周遊路由。 附加事件在程式代碼中沒有直接處理語法;若要在程式代碼中附加路由事件的處理程式,請使用指定的 Add*Handler 方法。 如需詳細資訊,請參閱 附加事件概觀

路由事件資訊

標識元欄位 PreviewStylusInAirMoveEvent
路由策略 隧道
代理人 StylusEventHandler

適用於

另請參閱