UIElement.PreviewLostKeyboardFocus 事件
定義
鍵盤不再以此元素為焦點時發生。Occurs when the keyboard is no longer focused on this element.
public:
virtual event System::Windows::Input::KeyboardFocusChangedEventHandler ^ PreviewLostKeyboardFocus;
public event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus;
member this.PreviewLostKeyboardFocus : System.Windows.Input.KeyboardFocusChangedEventHandler
Public Custom Event PreviewLostKeyboardFocus As KeyboardFocusChangedEventHandler
事件類型
實作
備註
因為此事件使用通道路由,所以遺失焦點的元素可能是子項目,而不是實際附加事件處理常式的專案。Because this event uses tunneling routing, the element that lost focus might be a child element instead of the element where the event handler is actually attached. 檢查 Source 事件資料中的,以判斷遺失焦點的實際元素。Check the Source in the event data to determine the actual element that lost focus.
此事件 Keyboard.PreviewLostKeyboardFocus 會為這個類別建立附加事件的別名,因此 PreviewLostKeyboardFocus 當 UIElement 繼承為基底專案時,它就是類別成員清單的一部分。This event creates an alias for the Keyboard.PreviewLostKeyboardFocus attached event for this class, so that PreviewLostKeyboardFocus is part of the class members list when UIElement is inherited as a base element. 附加至事件的事件處理常式 PreviewLostKeyboardFocus 會附加至基礎 Keyboard.PreviewLostKeyboardFocus 附加事件,並接收相同的事件資料實例。Event handlers that are attached to the PreviewLostKeyboardFocus event are attached to the underlying Keyboard.PreviewLostKeyboardFocus attached event and receive the same event data instance.
路由事件資訊Routed Event Information
識別碼欄位Identifier field | PreviewLostKeyboardFocusEvent |
路由策略Routing strategy | 隧道Tunneling |
代理人Delegate | KeyboardFocusChangedEventHandler |
對應的反升事件為 LostKeyboardFocus 。The corresponding bubbling event is LostKeyboardFocus.
OnPreviewLostKeyboardFocus在衍生類別中覆寫以執行這個事件的類別處理。Override OnPreviewLostKeyboardFocus to implement class handling for this event in derived classes.