DisplayInformation.AdvancedColorInfoChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché lorsque les informations de couleur avancées sont modifiées.
// 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)
Type d'événement
TypedEventHandler<DisplayInformation,IInspectable>
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 1803 (introduit dans 10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v6.0)
|
Remarques
Il s’agit d’une API d’inscription d’événements qui inscrit une notification d’événement pour les applications UWP afin qu’elles puissent être averties chaque fois qu’il y a une modification dans les informations de couleur avancée sur le moniteur correspondant à leur CoreWindow. L’application peut ensuite appeler l’API GetAdvancedColorInfo pour connaître les dernières fonctionnalités et l’état. L’application doit suivre les valeurs modifiées et répondre en conséquence si nécessaire. L’API d’événement n’indique pas quelles valeurs ont changé. Notez que cet événement supprime toute notification existante que l’application a précédemment inscrite pour les modifications apportées aux informations de couleur avancée.