TeachingTip.Closing 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 logo antes da dica começar a ser fechada.
Esta documentação se aplica ao WinUI 2 para UWP (para WinUI no SDK do Aplicativo Windows, consulte os namespaces SDK do Aplicativo Windows).
// Register
event_token Closing(TypedEventHandler<TeachingTip, TeachingTipClosingEventArgs const&> const& handler) const;
// Revoke with event_token
void Closing(event_token const* cookie) const;
// Revoke with event_revoker
TeachingTip::Closing_revoker Closing(auto_revoke_t, TypedEventHandler<TeachingTip, TeachingTipClosingEventArgs const&> const& handler) const;
public event TypedEventHandler<TeachingTip,TeachingTipClosingEventArgs> Closing;
Public Custom Event Closing As TypedEventHandler(Of TeachingTip, TeachingTipClosingEventArgs)