UIElement.ProcessKeyboardAccelerators Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Tritt auf, wenn eine Tastenkombination (oder Einschleunigung) gedrückt wird.
// Register
event_token ProcessKeyboardAccelerators(TypedEventHandler<UIElement, ProcessKeyboardAcceleratorEventArgs const&> const& handler) const;
// Revoke with event_token
void ProcessKeyboardAccelerators(event_token const* cookie) const;
// Revoke with event_revoker
UIElement::ProcessKeyboardAccelerators_revoker ProcessKeyboardAccelerators(auto_revoke_t, TypedEventHandler<UIElement, ProcessKeyboardAcceleratorEventArgs const&> const& handler) const;
public event TypedEventHandler<UIElement,ProcessKeyboardAcceleratorEventArgs> ProcessKeyboardAccelerators;
function onProcessKeyboardAccelerators(eventArgs) { /* Your code */ }
uIElement.addEventListener("processkeyboardaccelerators", onProcessKeyboardAccelerators);
uIElement.removeEventListener("processkeyboardaccelerators", onProcessKeyboardAccelerators);
- or -
uIElement.onprocesskeyboardaccelerators = onProcessKeyboardAccelerators;
Public Custom Event ProcessKeyboardAccelerators As TypedEventHandler(Of UIElement, ProcessKeyboardAcceleratorEventArgs)
<uiElement ProcessKeyboardAccelerators="eventhandler"/>