DisplayInformation.AdvancedColorInfoChanged 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
變更進階色彩資訊時引發。
// Register
event_token AdvancedColorInfoChanged(TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void AdvancedColorInfoChanged(event_token const* cookie) const;
// Revoke with event_revoker
DisplayInformation::AdvancedColorInfoChanged_revoker AdvancedColorInfoChanged(auto_revoke_t, TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayInformation,object> AdvancedColorInfoChanged;
function onAdvancedColorInfoChanged(eventArgs) { /* Your code */ }
displayInformation.addEventListener("advancedcolorinfochanged", onAdvancedColorInfoChanged);
displayInformation.removeEventListener("advancedcolorinfochanged", onAdvancedColorInfoChanged);
- or -
displayInformation.onadvancedcolorinfochanged = onAdvancedColorInfoChanged;
Public Custom Event AdvancedColorInfoChanged As TypedEventHandler(Of DisplayInformation, Object)
事件類型
TypedEventHandler<DisplayInformation,IInspectable>
Windows 需求
裝置系列 |
Windows 10, version 1803 (已於 10.0.17134.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v6.0 引進)
|
備註
這是事件註冊 API,會註冊 UWP app 的事件通知,以便每當監視器上與 CoreWindow 對應的進階色彩資訊有任何變更時,即可收到通知。 然後,應用程式可以呼叫 GetAdvancedColorInfo API,以瞭解最新的功能和狀態。 應用程式需要追蹤哪些值已變更,並視需要回應,事件 API 將不會指出哪些值已變更。 請注意,此事件會移除應用程式先前在進階色彩資訊中註冊變更的任何現有通知。