Application.EnteredBackground 事件

定义

当应用从前台移动到后台时发生。

public:
 virtual event EnteredBackgroundEventHandler ^ EnteredBackground;
// Register
event_token EnteredBackground(EnteredBackgroundEventHandler const& handler) const;

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

// Revoke with event_revoker
Application::EnteredBackground_revoker EnteredBackground(auto_revoke_t, EnteredBackgroundEventHandler const& handler) const;
public event EnteredBackgroundEventHandler EnteredBackground;
function onEnteredBackground(eventArgs) { /* Your code */ }
application.addEventListener("enteredbackground", onEnteredBackground);
application.removeEventListener("enteredbackground", onEnteredBackground);
- or -
application.onenteredbackground = onEnteredBackground;
Public Custom Event EnteredBackground As EnteredBackgroundEventHandler 

事件类型

Windows 要求

设备系列
Windows 10 Anniversary Edition (在 10.0.14393.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v3.0 中引入)

注解

当用户离开应用时,将触发此事件。 此事件的事件处理程序可以运行的时间有限。

当应用进入后台时,由系统强制执行的内存约束可能会更改。 使用此事件来检查当前的内存消耗和可用资源,以便保持低于限制,这样你的应用就不会在后台被挂起并可能终止。 有关更多详细信息 ,请参阅当你的应用移动到后台时释放内存

EnteredBackground 事件在注册它的单元中运行。

适用于

另请参阅