HandwritingView.CandidatesChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a coleção de candidatos de preenchimento automático para o HandwritingView é alterada.
// Register
event_token CandidatesChanged(TypedEventHandler<HandwritingView, HandwritingViewCandidatesChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void CandidatesChanged(event_token const* cookie) const;
// Revoke with event_revoker
HandwritingView::CandidatesChanged_revoker CandidatesChanged(auto_revoke_t, TypedEventHandler<HandwritingView, HandwritingViewCandidatesChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<HandwritingView,HandwritingViewCandidatesChangedEventArgs> CandidatesChanged;
function onCandidatesChanged(eventArgs) { /* Your code */ }
handwritingView.addEventListener("candidateschanged", onCandidatesChanged);
handwritingView.removeEventListener("candidateschanged", onCandidatesChanged);
- or -
handwritingView.oncandidateschanged = onCandidatesChanged;
Public Custom Event CandidatesChanged As TypedEventHandler(Of HandwritingView, HandwritingViewCandidatesChangedEventArgs)
Tipo de evento
Requisitos do Windows
Família de dispositivos |
Windows 10, version 2104 (introduzida na 10.0.20348.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduzida na v12.0)
|