CoreWindow.ClosestInteractiveBoundsRequested Evento

Definición

Nota:

No está pensado para uso general.

Se produce cuando un administrador de entrada de marco solicita el rectángulo delimitador de un elemento interactivo dentro de un rectángulo delimitador específico y más cercano a un puntero específico.

// Register
event_token ClosestInteractiveBoundsRequested(TypedEventHandler<CoreWindow, ClosestInteractiveBoundsRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreWindow::ClosestInteractiveBoundsRequested_revoker ClosestInteractiveBoundsRequested(auto_revoke_t, TypedEventHandler<CoreWindow, ClosestInteractiveBoundsRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWindow,ClosestInteractiveBoundsRequestedEventArgs> ClosestInteractiveBoundsRequested;
function onClosestInteractiveBoundsRequested(eventArgs) { /* Your code */ }
coreWindow.addEventListener("closestinteractiveboundsrequested", onClosestInteractiveBoundsRequested);
coreWindow.removeEventListener("closestinteractiveboundsrequested", onClosestInteractiveBoundsRequested);
- or -
coreWindow.onclosestinteractiveboundsrequested = onClosestInteractiveBoundsRequested;
Public Custom Event ClosestInteractiveBoundsRequested As TypedEventHandler(Of CoreWindow, ClosestInteractiveBoundsRequestedEventArgs) 

Tipo de evento

Requisitos de Windows

Familia de dispositivos
Windows 10 Anniversary Edition (se introdujo en la versión 10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (se introdujo en la versión v3.0)

Se aplica a