Stylus.LostStylusCapture 附加事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
項目釋放手寫筆事件時發生。
see AddLostStylusCaptureHandler, and RemoveLostStylusCaptureHandler
see AddLostStylusCaptureHandler, and RemoveLostStylusCaptureHandler
see AddLostStylusCaptureHandler, and RemoveLostStylusCaptureHandler
範例
下列範例示範如何在擷取和釋放手寫筆事件時TextBox變更的背景色彩TextBox。 這個範例假設有一個稱為 textBox1
的文本框,而且 GotStylusCapture 和 LostStylusCapture 事件會連接到範例中的事件處理程式。
void textbox1_LostStylusCapture(object sender, StylusEventArgs e)
{
textbox1.Background = Brushes.White;
}
void textbox1_GotStylusCapture(object sender, StylusEventArgs e)
{
textbox1.Background = Brushes.Red;
}
Private Sub textbox1_LostStylusCapture(ByVal sender As Object, ByVal e As StylusEventArgs) _
Handles textbox1.LostStylusCapture
textbox1.Background = Brushes.White
End Sub
Private Sub textbox1_GotStylusCapture(ByVal sender As Object, ByVal e As StylusEventArgs) _
Handles textbox1.GotStylusCapture
textbox1.Background = Brushes.Red
End Sub
備註
這是附加的事件。 WPF 會將附加事件實作為路由事件。 附加事件基本上是 XAML 語言概念,用來參考物件上未處理的事件本身定義事件。 WPF 會進一步擴充附加事件的功能,讓它周遊路由。 附加事件在程式代碼中沒有直接處理語法;若要在程式代碼中附加路由事件的處理程式,請使用指定的 Add*Handler 方法。 如需詳細資訊,請參閱 附加事件概觀。
路由事件資訊
標識元欄位 | LostStylusCaptureEvent |
路由策略 | 鼓 泡 |
代理人 | StylusEventHandler |