AppWindow.Destroying イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ウィンドウが破棄されるときに発生します。
// 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)
イベントの種類
TypedEventHandler<AppWindow,IInspectable>
注釈
イベントは、ウィンドウが画面から削除された後に送信されます。 このイベントを使用して、ウィンドウに関連付けられているリソースをクリーンします。