UIElement.PreviewKeyDown Evento

Definición

Se produce cuando se presiona una tecla de teclado mientras uiElement tiene el foco.

public:
 virtual event KeyEventHandler ^ PreviewKeyDown;
// Register
event_token PreviewKeyDown(KeyEventHandler const& handler) const;

// Revoke with event_token
void PreviewKeyDown(event_token const* cookie) const;

// Revoke with event_revoker
UIElement::PreviewKeyDown_revoker PreviewKeyDown(auto_revoke_t, KeyEventHandler const& handler) const;
public event KeyEventHandler PreviewKeyDown;
function onPreviewKeyDown(eventArgs) { /* Your code */ }
uIElement.addEventListener("previewkeydown", onPreviewKeyDown);
uIElement.removeEventListener("previewkeydown", onPreviewKeyDown);
- or -
uIElement.onpreviewkeydown = onPreviewKeyDown;
Public Custom Event PreviewKeyDown As KeyEventHandler 
<uiElement PreviewKeyDown="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 KeyDown.

Se aplica a

Consulte también