ExpKeyboardInput.ContextMenuKey Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
// Register
event_token ContextMenuKey(TypedEventHandler<ExpKeyboardInput, ExpContextMenuKeyEventArgs const&> const& handler) const;
// Revoke with event_token
void ContextMenuKey(event_token const* cookie) const;
// Revoke with event_revoker
ExpKeyboardInput::ContextMenuKey_revoker ContextMenuKey(auto_revoke_t, TypedEventHandler<ExpKeyboardInput, ExpContextMenuKeyEventArgs const&> const& handler) const;
public event TypedEventHandler<ExpKeyboardInput,ExpContextMenuKeyEventArgs> ContextMenuKey;
function onContextMenuKey(eventArgs) { /* Your code */ }
expKeyboardInput.addEventListener("contextmenukey", onContextMenuKey);
expKeyboardInput.removeEventListener("contextmenukey", onContextMenuKey);
- or -
expKeyboardInput.oncontextmenukey = onContextMenuKey;
Public Custom Event ContextMenuKey As TypedEventHandler(Of ExpKeyboardInput, ExpContextMenuKeyEventArgs)