DisplayInformation.AdvancedColorInfoChanged 事件

定义

更改高级颜色信息时引发。

// 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) 

事件类型

Windows 要求

设备系列
Windows 10, version 1803 (在 10.0.17134.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)

注解

这是一个事件注册 API,它将为 UWP 应用注册一个事件通知,以便在监视器上与 CoreWindow 对应的高级颜色信息发生任何更改时通知它们。 然后,应用可以调用 GetAdvancedColorInfo API 来了解最新的功能和状态。 应用需要跟踪哪些值已更改并根据需要做出相应响应,事件 API 不会指示哪些值已更改。 请注意,此事件将删除应用之前在高级颜色信息中注册更改的任何现有通知。

适用于