共用方式為


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 

事件類型

備註

當使用者切換至另一個應用程式或桌面時,系統會暫停您的應用程式。 當使用者切換回您的 app 時,系統就會繼續執行 app。 當系統繼續執行您的 app 時,您的變數和資料結構內容和系統暫停 app 之前一樣,沒有變化。 系統會將 app 回復成暫停之前的相同狀態,如此使用者會以為 app 一直在背景中執行。 不過,應用程式可能已暫停很長的時間,因此應該重新整理應用程式暫停時可能變更的任何顯示內容,例如新聞摘要或使用者的位置。 如果您的應用程式沒有任何顯示的內容可重新整理,就不需要它處理繼續事件。

適用於

另請參閱