DispatcherQueue.FrameworkShutdownCompleted 事件

定义

调用 ShutdownQueueShutdownQueueAsync 时引发。 有关引发的事件的完整列表和顺序,请参阅 ShutdownQueueAsync 的备注。

// Register
event_token FrameworkShutdownCompleted(TypedEventHandler<DispatcherQueue, IInspectable const&> const& handler) const;

// Revoke with event_token
void FrameworkShutdownCompleted(event_token const* cookie) const;

// Revoke with event_revoker
DispatcherQueue::FrameworkShutdownCompleted_revoker FrameworkShutdownCompleted(auto_revoke_t, TypedEventHandler<DispatcherQueue, IInspectable const&> const& handler) const;
public event TypedEventHandler<DispatcherQueue,object> FrameworkShutdownCompleted;
function onFrameworkShutdownCompleted(eventArgs) { /* Your code */ }
dispatcherQueue.addEventListener("frameworkshutdowncompleted", onFrameworkShutdownCompleted);
dispatcherQueue.removeEventListener("frameworkshutdowncompleted", onFrameworkShutdownCompleted);
- or -
dispatcherQueue.onframeworkshutdowncompleted = onFrameworkShutdownCompleted;
Public Custom Event FrameworkShutdownCompleted As TypedEventHandler(Of DispatcherQueue, Object) 

事件类型

适用于