次の方法で共有


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 

イベントの種類

注釈

ユーザーが別のアプリまたはデスクトップに切り替えると、システムはアプリを中断します。 ユーザーが元のアプリに戻すと、システムはアプリを再開します。 システムがアプリを再開した時点で、変数とデータ構造の内容は、システムがアプリを一時停止する前の状態と同じです。 システムはアプリを厳密に中断前の状態に復元するので、ユーザーからはアプリがバックグラウンドで実行していたように見えます。 しかし、アプリは長時間一時停止している場合があるので、ニュース フィードやユーザーの位置情報など、アプリが一時停止している間に変化した可能性のある表示コンテンツを更新する必要があります。 更新するコンテンツがアプリに表示されていない場合は、再開イベントを処理する必要はありません。

適用対象

こちらもご覧ください