InputKeyboardSource.SystemKeyDown 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于使用者同步選取 ALT 鍵時按下按鍵時。
// Register
event_token SystemKeyDown(TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
// Revoke with event_token
void SystemKeyDown(event_token const* cookie) const;
// Revoke with event_revoker
InputKeyboardSource::SystemKeyDown_revoker SystemKeyDown(auto_revoke_t, TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<InputKeyboardSource,KeyEventArgs> SystemKeyDown;
function onSystemKeyDown(eventArgs) { /* Your code */ }
inputKeyboardSource.addEventListener("systemkeydown", onSystemKeyDown);
inputKeyboardSource.removeEventListener("systemkeydown", onSystemKeyDown);
- or -
inputKeyboardSource.onsystemkeydown = onSystemKeyDown;
Public Custom Event SystemKeyDown As TypedEventHandler(Of InputKeyboardSource, KeyEventArgs)
事件類型
備註
當啟用輸入法編輯器 (輸入法) 時,應用程式不會收到此事件。 輸入法編輯器 (輸入法) 處理所有鍵盤輸入,並將 [已處理 ] 設定為 true。