Condividi tramite


CoreFrameworkInputView.OcclusionsChanged Evento

Definizione

Si verifica quando uno o più oggetti CoreInputViewOcclusion modificano la posizione o l'area di occlusione in risposta al riposizionamento del riquadro di input associato a CoreFrameworkInputView.

// Register
event_token OcclusionsChanged(TypedEventHandler<CoreFrameworkInputView, CoreFrameworkInputViewOcclusionsChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreFrameworkInputView::OcclusionsChanged_revoker OcclusionsChanged(auto_revoke_t, TypedEventHandler<CoreFrameworkInputView, CoreFrameworkInputViewOcclusionsChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreFrameworkInputView,CoreFrameworkInputViewOcclusionsChangedEventArgs> OcclusionsChanged;
function onOcclusionsChanged(eventArgs) { /* Your code */ }
coreFrameworkInputView.addEventListener("occlusionschanged", onOcclusionsChanged);
coreFrameworkInputView.removeEventListener("occlusionschanged", onOcclusionsChanged);
- or -
coreFrameworkInputView.onocclusionschanged = onOcclusionsChanged;
Public Custom Event OcclusionsChanged As TypedEventHandler(Of CoreFrameworkInputView, CoreFrameworkInputViewOcclusionsChangedEventArgs) 

Tipo evento

Commenti

L'applicazione deve essere in primo piano per l'attivazione di questo evento.

Si applica a

Vedi anche