ClaimedLineDisplay.Closed 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
ClaimedLineDisplay關閉時所引發的事件。
// Register
event_token Closed(TypedEventHandler<ClaimedLineDisplay, ClaimedLineDisplayClosedEventArgs const&> const& handler) const;
// Revoke with event_token
void Closed(event_token const* cookie) const;
// Revoke with event_revoker
ClaimedLineDisplay::Closed_revoker Closed(auto_revoke_t, TypedEventHandler<ClaimedLineDisplay, ClaimedLineDisplayClosedEventArgs const&> const& handler) const;
public event TypedEventHandler<ClaimedLineDisplay,ClaimedLineDisplayClosedEventArgs> Closed;
function onClosed(eventArgs) { /* Your code */ }
claimedLineDisplay.addEventListener("closed", onClosed);
claimedLineDisplay.removeEventListener("closed", onClosed);
- or -
claimedLineDisplay.onclosed = onClosed;
Public Custom Event Closed As TypedEventHandler(Of ClaimedLineDisplay, ClaimedLineDisplayClosedEventArgs)
事件類型
Windows 需求
裝置系列 |
Windows 10, version 1809 (已於 10.0.17763.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v7.0 引進)
|
備註
當應用程式暫停時,所有 ClaimedLineDisplay 物件都會關閉。 此事件有助於判斷何時需要重新建立線條顯示連線。