Stylus.StylusEnter 附加事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
手寫筆游標進入項目的邊界時發生。
see AddStylusEnterHandler, and RemoveStylusEnterHandler
see AddStylusEnterHandler, and RemoveStylusEnterHandler
see AddStylusEnterHandler, and RemoveStylusEnterHandler
範例
下列範例示範如何在手寫筆游標進入並離開其界限時變更的色彩 Button 。 這個範例假設有一個 Button 呼叫 button1
, StylusEnter 而且和 StylusLeave 事件會連線到事件處理程式。
Brush originalColor;
void button1_StylusLeave(object sender, StylusEventArgs e)
{
button1.Background = originalColor;
}
void button1_StylusEnter(object sender, StylusEventArgs e)
{
originalColor = button1.Background;
button1.Background = Brushes.Gray;
}
Private originalColor As Brush
Private Sub button1_StylusLeave(ByVal sender As Object, ByVal e As StylusEventArgs) _
Handles button1.StylusLeave
button1.Background = originalColor
End Sub
Private Sub button1_StylusEnter(ByVal sender As Object, ByVal e As StylusEventArgs) _
Handles button1.StylusEnter
originalColor = button1.Background
button1.Background = Brushes.Gray
End Sub
備註
這是附加事件。 WPF 會將附加事件實作為路由事件。 附加事件基本上是 XAML 語言概念,用來參考未自行定義事件之物件上所處理的事件。 WPF 會進一步擴充附加事件的功能,使其能夠周遊路由。 附加事件在程式代碼中沒有直接處理語法;若要在程式代碼中附加路由事件的處理程式,請使用指定的 Add*Handler 方法。 如需詳細資訊,請參閱 附加事件概觀。
路由事件資訊
標識元欄位 | StylusEnterEvent |
路由策略 | 直接 |
代理人 | StylusEventHandler |