CoreInputView.OcclusionsChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando uno o più oggetti CoreInputViewOcclusion cambiano la loro posizione o l'area di occluding in risposta al riposizionamento del riquadro di input associato a CoreInputView.
// Register
event_token OcclusionsChanged(TypedEventHandler<CoreInputView, CoreInputViewOcclusionsChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void OcclusionsChanged(event_token const* cookie) const;
// Revoke with event_revoker
CoreInputView::OcclusionsChanged_revoker OcclusionsChanged(auto_revoke_t, TypedEventHandler<CoreInputView, CoreInputViewOcclusionsChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreInputView,CoreInputViewOcclusionsChangedEventArgs> OcclusionsChanged;
function onOcclusionsChanged(eventArgs) { /* Your code */ }
coreInputView.addEventListener("occlusionschanged", onOcclusionsChanged);
coreInputView.removeEventListener("occlusionschanged", onOcclusionsChanged);
- or -
coreInputView.onocclusionschanged = onOcclusionsChanged;
Public Custom Event OcclusionsChanged As TypedEventHandler(Of CoreInputView, CoreInputViewOcclusionsChangedEventArgs)
Tipo evento
Commenti
L'applicazione deve essere in primo piano per questo evento da attivare.