UIElement.OnStylusLeave(StylusEventArgs) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當這個項目引發未處理的 StylusLeave 附加事件時叫用。 實作這個方法可為此事件加入類別處理。
protected:
virtual void OnStylusLeave(System::Windows::Input::StylusEventArgs ^ e);
protected virtual void OnStylusLeave (System.Windows.Input.StylusEventArgs e);
abstract member OnStylusLeave : System.Windows.Input.StylusEventArgs -> unit
override this.OnStylusLeave : System.Windows.Input.StylusEventArgs -> unit
Protected Overridable Sub OnStylusLeave (e As StylusEventArgs)
參數
包含事件資料的 StylusEventArgs。
備註
這個方法沒有預設實作。 由於繼承中的中繼類別可能會實作這個方法,因此建議您在實作中呼叫基底實作。 視您的需求而定,您可以在特殊處理之前或之後呼叫基底。
此方法的用途類似于 Common Language Runtime (CLR) 事件模式 On* 方法:此方法提供方法,藉由建立類別處理常式而非實例處理常式來處理衍生類別中的比對事件。 在此情況下,比對事件是路由事件。 將事件標示為已處理仍然很有用,以防止一般實例處理常式 (未指定 handledEventsToo
叫用) 的處理常式。