Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Popup.Closed Event

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Fires when the IsOpen property is set to false.

// Register
event_token Closed(EventHandler<IInspectable> const& handler) const;

// Revoke with event_token
void Closed(event_token const* cookie) const;

// Revoke with event_revoker
Popup::Closed_revoker Closed(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> Closed;
function onClosed(eventArgs) { /* Your code */ }
popup.addEventListener("closed", onClosed);
popup.removeEventListener("closed", onClosed);
- or -
popup.onclosed = onClosed;
Public Custom Event Closed As EventHandler(Of Object) 
<Popup Closed="eventhandler"/>

Event Type

Applies to


Feedback

Was this page helpful?