WebUIApplication.Resuming イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリが再開されるときに発生します。
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
イベントの種類
注釈
ユーザーが別のアプリまたはデスクトップに切り替えると、システムはアプリを中断します。 ユーザーが元のアプリに戻すと、システムはアプリを再開します。 システムがアプリを再開した時点で、変数とデータ構造の内容は、システムがアプリを一時停止する前の状態と同じです。 システムはアプリを厳密に中断前の状態に復元するので、ユーザーからはアプリがバックグラウンドで実行していたように見えます。 しかし、アプリは長時間一時停止している場合があるので、ニュース フィードやユーザーの位置情報など、アプリが一時停止している間に変化した可能性のある表示コンテンツを更新する必要があります。 更新するコンテンツがアプリに表示されていない場合は、再開イベントを処理する必要はありません。