UIElement.AccessKeyInvoked イベント

定義

ユーザーがアクセス キー シーケンスを完了したときに発生します。

// Register
event_token AccessKeyInvoked(TypedEventHandler<UIElement, AccessKeyInvokedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
UIElement::AccessKeyInvoked_revoker AccessKeyInvoked(auto_revoke_t, TypedEventHandler<UIElement, AccessKeyInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<UIElement,AccessKeyInvokedEventArgs> AccessKeyInvoked;
function onAccessKeyInvoked(eventArgs) { /* Your code */ }
uIElement.addEventListener("accesskeyinvoked", onAccessKeyInvoked);
uIElement.removeEventListener("accesskeyinvoked", onAccessKeyInvoked);
- or -
uIElement.onaccesskeyinvoked = onAccessKeyInvoked;
Public Custom Event AccessKeyInvoked As TypedEventHandler(Of UIElement, AccessKeyInvokedEventArgs) 
<uiElement AccessKeyInvoked="eventhandler"/>

イベントの種類

Windows の要件

デバイス ファミリ
Windows 10 Anniversary Edition (10.0.14393.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v3.0 で導入)

注釈

このイベントは、アクセス キー シーケンスに関連付けられているアクションを呼び出す必要があることを示します。 たとえば、要素の AccessKey が "A" で、ユーザーが Alt キーを押しながら A キーを押した場合です。

アクセス キーは、1 文字の場合と複数の文字の場合があります。 このイベントは、ユーザーがアクセス キーのすべての文字を入力した場合にのみ発生します。 たとえば、 AccessKey の値が "BC" の場合、ユーザーが "B" を押してもイベントは発生しません。 イベントは、ユーザーが "B"、"C" を押したときに発生します。

このイベントは、キーが押されたときに発生します。キーが離されたときは発生しません。

適用対象

こちらもご覧ください