WebUIApplication.Resuming 事件

定义

在应用恢复时发生。

public:
 static event ResumingEventHandler ^ Resuming;
// Register
static event_token Resuming(ResumingEventHandler const& handler) const;

// Revoke with event_token
static void Resuming(event_token const* cookie) const;

// Revoke with event_revoker
static WebUIApplication::Resuming_revoker Resuming(auto_revoke_t, ResumingEventHandler const& handler) const;
public static event ResumingEventHandler Resuming;
function onResuming(eventArgs) { /* Your code */ }
Windows.UI.WebUI.WebUIApplication.addEventListener("resuming", onResuming);
Windows.UI.WebUI.WebUIApplication.removeEventListener("resuming", onResuming);
- or -
Windows.UI.WebUI.WebUIApplication.onresuming = onResuming;
Public Shared Custom Event Resuming As ResumingEventHandler 

事件类型

注解

每当用户切换到桌面或其他应用时,系统都会挂起你的应用。 每当用户切回到你的应用时,系统就会恢复你的应用。 当系统恢复你的应用时,你的变量和数据结构的内容与系统将你的应用暂停之前的内容相同。 系统会将你的应用完全恢复到你离开时的状态,使用户感觉你的应用好像一直在后台运行一样。 但是,应用可能已暂停很长时间,因此它应刷新在应用暂停时可能已更改的任何显示内容,例如新闻源或用户的位置。 如果你的应用没有任何要刷新的显示内容,则无需处理恢复事件。

适用于

另请参阅