CoreInputView.SupportedKindsChanged 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 exibições CoreInputViewKind com suporte para CoreInputView é alterada.
// Register
event_token SupportedKindsChanged(TypedEventHandler<CoreInputView, IInspectable const&> const& handler) const;
// Revoke with event_token
void SupportedKindsChanged(event_token const* cookie) const;
// Revoke with event_revoker
CoreInputView::SupportedKindsChanged_revoker SupportedKindsChanged(auto_revoke_t, TypedEventHandler<CoreInputView, IInspectable const&> const& handler) const;
public event TypedEventHandler<CoreInputView,object> SupportedKindsChanged;
function onSupportedKindsChanged(eventArgs) { /* Your code */ }
coreInputView.addEventListener("supportedkindschanged", onSupportedKindsChanged);
coreInputView.removeEventListener("supportedkindschanged", onSupportedKindsChanged);
- or -
coreInputView.onsupportedkindschanged = onSupportedKindsChanged;
Public Custom Event SupportedKindsChanged As TypedEventHandler(Of CoreInputView, Object)
Tipo de evento
TypedEventHandler<CoreInputView,IInspectable>
Requisitos do Windows
Família de dispositivos |
Windows 11 (introduzida na 10.0.22000.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduzida na v14.0)
|