AppWindow.Destroying Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’une fenêtre est en cours de destruction.
// Register
event_token Destroying(TypedEventHandler<AppWindow, IInspectable const&> const& handler) const;
// Revoke with event_token
void Destroying(event_token const* cookie) const;
// Revoke with event_revoker
AppWindow::Destroying_revoker Destroying(auto_revoke_t, TypedEventHandler<AppWindow, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppWindow,object> Destroying;
function onDestroying(eventArgs) { /* Your code */ }
appWindow.addEventListener("destroying", onDestroying);
appWindow.removeEventListener("destroying", onDestroying);
- or -
appWindow.ondestroying = onDestroying;
Public Custom Event Destroying As TypedEventHandler(Of AppWindow, Object)
Type d'événement
TypedEventHandler<AppWindow,IInspectable>
Remarques
L’événement est envoyé une fois la fenêtre supprimée de l’écran. Utilisez cet événement pour propre des ressources associées à la fenêtre.