CoreWindowFlyout.Showing Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Viene attivato quando viene visualizzato il riquadro a comparsa.
// 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)