Stylus.StylusButtonUp 附加事件

定義

使用者放開手寫筆上其中一個按鈕時發生。

see AddStylusButtonUpHandler, and RemoveStylusButtonUpHandler
see AddStylusButtonUpHandler, and RemoveStylusButtonUpHandler
see AddStylusButtonUpHandler, and RemoveStylusButtonUpHandler

範例

下列範例示範如何在使用者放開手寫筆上的手寫筆按鈕時,複製選取的文字。 這個範例假設有一textBox1個名為 TextBox 的 ,而且StylusButtonUp事件已連接到事件處理程式。

void textbox1_StylusButtonUp(object sender, StylusButtonEventArgs e)
{
    if (e.StylusButton.Guid != StylusPointProperties.BarrelButton.Id)
    {
        return;
    }

    if (textbox1.SelectedText == "")
    {
        return;
    }

    Clipboard.SetDataObject(textbox1.SelectedText);
}
Private Sub textbox1_StylusButtonUp(ByVal sender As Object, ByVal e As StylusButtonEventArgs) _
    Handles textbox1.StylusButtonUp

    If e.StylusButton.Guid <> StylusPointProperties.BarrelButton.Id Then
        Return
    End If

    If textbox1.SelectedText = "" Then
        Return
    End If

    Clipboard.SetDataObject(textbox1.SelectedText)

End Sub

備註

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

路由事件資訊

標識元欄位 StylusButtonUpEvent
路由策略 鼓 泡
代理人 StylusButtonEventHandler

適用於

另請參閱