UIElement.PreviewKeyUp Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
public:
virtual event KeyEventHandler ^ PreviewKeyUp;
// Register
event_token PreviewKeyUp(KeyEventHandler const& handler) const;
// Revoke with event_token
void PreviewKeyUp(event_token const* cookie) const;
// Revoke with event_revoker
UIElement::PreviewKeyUp_revoker PreviewKeyUp(auto_revoke_t, KeyEventHandler const& handler) const;
public event KeyEventHandler PreviewKeyUp;
function onPreviewKeyUp(eventArgs) { /* Your code */ }
uIElement.addEventListener("previewkeyup", onPreviewKeyUp);
uIElement.removeEventListener("previewkeyup", onPreviewKeyUp);
- or -
uIElement.onpreviewkeyup = onPreviewKeyUp;
Public Custom Event PreviewKeyUp As KeyEventHandler
<uiElement PreviewKeyUp="eventhandler"/>
Tipo de evento
Requisitos de Windows
Familia de dispositivos |
Windows 10 Fall Creators Update (se introdujo en la versión 10.0.16299.0)
|
API contract |
Windows.Foundation.UniversalApiContract (se introdujo en la versión v5.0)
|
Comentarios
PreviewKeyDown es un evento enrutado. Para obtener más información sobre el concepto de eventos enrutados, consulta Información general sobre eventos y eventos enrutados.
Este evento usa la estrategia de enrutamiento de tunelización. El evento de propagación correspondiente es KeyUp.