DesignerAppManager.DesignerAppExited 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.
Occurs when the app in the designer has exited.
// Register
event_token DesignerAppExited(TypedEventHandler<DesignerAppManager, DesignerAppExitedEventArgs const&> const& handler) const;
// Revoke with event_token
void DesignerAppExited(event_token const* cookie) const;
// Revoke with event_revoker
DesignerAppManager::DesignerAppExited_revoker DesignerAppExited(auto_revoke_t, TypedEventHandler<DesignerAppManager, DesignerAppExitedEventArgs const&> const& handler) const;
public event TypedEventHandler<DesignerAppManager,DesignerAppExitedEventArgs> DesignerAppExited;
function onDesignerAppExited(eventArgs) { /* Your code */ }
designerAppManager.addEventListener("designerappexited", onDesignerAppExited);
designerAppManager.removeEventListener("designerappexited", onDesignerAppExited);
- or -
designerAppManager.ondesignerappexited = onDesignerAppExited;
Public Custom Event DesignerAppExited As TypedEventHandler(Of DesignerAppManager, DesignerAppExitedEventArgs)