DesignerAppManager.DesignerAppExited Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит при выходе приложения в конструкторе.
// 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)