Window.Closed 事件

定义

在窗口关闭时发生。

// Register
event_token Closed(TypedEventHandler<IInspectable, WindowEventArgs const&> const& handler) const;

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

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

事件类型

注解

Window 关闭时 发生 Closed 事件。

如果这是应用关闭的最后一个窗口,则应用程序将结束。

适用于

另请参阅