다음을 통해 공유


WebViewControl.AcceleratorKeyPressed 이벤트

정의

액셀러레이터 키를 누를 때 트리거되는 이벤트입니다.

// 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) 

이벤트 유형

적용 대상