共用方式為


InputKeyboardSource.SystemKeyUp 事件

定義

發生于使用者放開同步選取 ALT 鍵時按下的按鍵時。

// Register
event_token SystemKeyUp(TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;

// Revoke with event_token
void SystemKeyUp(event_token const* cookie) const;

// Revoke with event_revoker
InputKeyboardSource::SystemKeyUp_revoker SystemKeyUp(auto_revoke_t, TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<InputKeyboardSource,KeyEventArgs> SystemKeyUp;
function onSystemKeyUp(eventArgs) { /* Your code */ }
inputKeyboardSource.addEventListener("systemkeyup", onSystemKeyUp);
inputKeyboardSource.removeEventListener("systemkeyup", onSystemKeyUp);
- or -
inputKeyboardSource.onsystemkeyup = onSystemKeyUp;
Public Custom Event SystemKeyUp As TypedEventHandler(Of InputKeyboardSource, KeyEventArgs) 

事件類型

備註

當啟用輸入法編輯器 (輸入法) 時,應用程式不會收到此事件。 輸入法編輯器 (輸入法) 處理所有鍵盤輸入,並將 [已處理 ] 設定為 true。

適用於

另請參閱