UIElement.MouseLeave 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
滑鼠指標離開此元素的邊界時發生。
public:
virtual event System::Windows::Input::MouseEventHandler ^ MouseLeave;
public event System.Windows.Input.MouseEventHandler MouseLeave;
member this.MouseLeave : System.Windows.Input.MouseEventHandler
Public Custom Event MouseLeave As MouseEventHandler
事件類型
實作
備註
MouseLeave 是使用直接事件處理路由策略 的路由事件 。 直接路由事件不會沿著路由引發;相反地,它們會在引發它們的相同元素中處理。 不過,它們確實會啟用路由事件行為的其他層面,例如樣式中的事件觸發程式。
雖然 MouseLeave 追蹤滑鼠離開元素的時機,但此事件更常會報告 IsMouseOver 屬性值已從 true
變更為 false
這個專案。
這個事件會為此 Mouse.MouseLeave 類別建立附加事件的別名,以便在 MouseLeave 繼承為基底專案時 UIElement 屬於類別成員清單的一部分。 附加至 MouseLeave 事件的事件處理常式會附加至基礎 Mouse.MouseLeave 附加事件,並接收相同的事件資料實例。
路由事件資訊
識別碼欄位 | MouseLeaveEvent |
路由策略 | 直接 |
代理人 | MouseEventHandler |
- 覆寫 OnMouseLeave 以在衍生類別中實作此事件的類別處理。