WebViewControl.AcceleratorKeyPressed 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.
Ein Ereignis, das ausgelöst wird, wenn die Tastenkombination gedrückt wird.
// Register
event_token AcceleratorKeyPressed(TypedEventHandler<WebViewControl, WebViewControlAcceleratorKeyPressedEventArgs const&> const& handler) const;
// Revoke with event_token
void AcceleratorKeyPressed(event_token const* cookie) const;
// Revoke with event_revoker
WebViewControl::AcceleratorKeyPressed_revoker AcceleratorKeyPressed(auto_revoke_t, TypedEventHandler<WebViewControl, WebViewControlAcceleratorKeyPressedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebViewControl,WebViewControlAcceleratorKeyPressedEventArgs> AcceleratorKeyPressed;
function onAcceleratorKeyPressed(eventArgs) { /* Your code */ }
webViewControl.addEventListener("acceleratorkeypressed", onAcceleratorKeyPressed);
webViewControl.removeEventListener("acceleratorkeypressed", onAcceleratorKeyPressed);
- or -
webViewControl.onacceleratorkeypressed = onAcceleratorKeyPressed;
Public Custom Event AcceleratorKeyPressed As TypedEventHandler(Of WebViewControl, WebViewControlAcceleratorKeyPressedEventArgs)