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) 

イベントの種類

注釈

入力メソッド エディター (IME) が有効になっている場合、アプリはこのイベントを受け取りません。 入力メソッド エディター (IME) は、すべてのキーボード入力を処理し、 Handled を true に設定します。

適用対象

こちらもご覧ください