Condividi tramite


CoreWindow.PointerRoutedAway Evento

Definizione

Si verifica sull'input del puntatore di ricezione dell'oggetto di input quando il puntatore viene reindirizzato a un altro oggetto di input (eventualmente in un processo separato).

// Register
event_token PointerRoutedAway(TypedEventHandler<ICorePointerRedirector, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreWindow::PointerRoutedAway_revoker PointerRoutedAway(auto_revoke_t, TypedEventHandler<ICorePointerRedirector, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<ICorePointerRedirector,PointerEventArgs> PointerRoutedAway;
function onPointerRoutedAway(eventArgs) { /* Your code */ }
coreWindow.addEventListener("pointerroutedaway", onPointerRoutedAway);
coreWindow.removeEventListener("pointerroutedaway", onPointerRoutedAway);
- or -
coreWindow.onpointerroutedaway = onPointerRoutedAway;
Public Custom Event PointerRoutedAway As TypedEventHandler(Of ICorePointerRedirector, PointerEventArgs) Implements PointerRoutedAway

Tipo evento

Implementazioni

Requisiti Windows

Famiglia di dispositivi
Windows 10 (è stato introdotto in 10.0.10586.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v2.0)

Si applica a

Vedi anche