CoreApplication.Suspending 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在应用挂起时发生。
// 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 仅在本机应用中受支持。