CoreApplication.Suspending 事件

定义

在应用挂起时发生。

// Register
static event_token Suspending(EventHandler<SuspendingEventArgs> const& handler) const;

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

// Revoke with event_revoker
static CoreApplication::Suspending_revoker Suspending(auto_revoke_t, EventHandler<SuspendingEventArgs> const& handler) const;
public static event System.EventHandler<SuspendingEventArgs> Suspending;
function onSuspending(eventArgs) { /* Your code */ }
Windows.ApplicationModel.Core.CoreApplication.addEventListener("suspending", onSuspending);
Windows.ApplicationModel.Core.CoreApplication.removeEventListener("suspending", onSuspending);
- or -
Windows.ApplicationModel.Core.CoreApplication.onsuspending = onSuspending;
Public Shared Custom Event Suspending As EventHandler(Of SuspendingEventArgs) 

事件类型

注解

Windows Phone 8

此 API 仅在本机应用中受支持。

适用于