StatusBar.Hiding 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.
Esse evento é gerado quando a barra de status está sendo ocultada.
// Register
event_token Hiding(TypedEventHandler<StatusBar, IInspectable const&> const& handler) const;
// Revoke with event_token
void Hiding(event_token const* cookie) const;
// Revoke with event_revoker
StatusBar::Hiding_revoker Hiding(auto_revoke_t, TypedEventHandler<StatusBar, IInspectable const&> const& handler) const;
public event TypedEventHandler<StatusBar,object> Hiding;
function onHiding(eventArgs) { /* Your code */ }
statusBar.addEventListener("hiding", onHiding);
statusBar.removeEventListener("hiding", onHiding);
- or -
statusBar.onhiding = onHiding;
Public Custom Event Hiding As TypedEventHandler(Of StatusBar, Object)
Tipo de evento
TypedEventHandler<StatusBar,IInspectable>