共用方式為


DisplayInformation.ColorProfileChanged 事件

定義

發生于實體顯示器的色彩設定檔變更時。

// Register
event_token ColorProfileChanged(TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
DisplayInformation::ColorProfileChanged_revoker ColorProfileChanged(auto_revoke_t, TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayInformation,object> ColorProfileChanged;
function onColorProfileChanged(eventArgs) { /* Your code */ }
displayInformation.addEventListener("colorprofilechanged", onColorProfileChanged);
displayInformation.removeEventListener("colorprofilechanged", onColorProfileChanged);
- or -
displayInformation.oncolorprofilechanged = onColorProfileChanged;
Public Custom Event ColorProfileChanged As TypedEventHandler(Of DisplayInformation, Object) 

事件類型

備註

只有在顯示色彩設定檔變更時,才會觸發 ColorProfileChanged 事件。 然後,您必須呼叫 DisplayInformation.GetColorProfileAsync 方法,以非同步方式擷取新的色彩設定檔。

適用於