CoreWindowFlyout.Showing Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se desencadena cuando se muestra el control flotante.
// Register
event_token Showing(TypedEventHandler<CoreWindow, CoreWindowPopupShowingEventArgs const&> const& handler) const;
// Revoke with event_token
void Showing(event_token const* cookie) const;
// Revoke with event_revoker
CoreWindowFlyout::Showing_revoker Showing(auto_revoke_t, TypedEventHandler<CoreWindow, CoreWindowPopupShowingEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWindow,CoreWindowPopupShowingEventArgs> Showing;
function onShowing(eventArgs) { /* Your code */ }
coreWindowFlyout.addEventListener("showing", onShowing);
coreWindowFlyout.removeEventListener("showing", onShowing);
- or -
coreWindowFlyout.onshowing = onShowing;
Public Custom Event Showing As TypedEventHandler(Of CoreWindow, CoreWindowPopupShowingEventArgs)