DisplayInformation.DpiChanged É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.
Se produit lorsque la propriété LogicalDpi change, car les pixels par pouce (PPI) de l’affichage changent.
// Register
event_token DpiChanged(TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void DpiChanged(event_token const* cookie) const;
// Revoke with event_revoker
DisplayInformation::DpiChanged_revoker DpiChanged(auto_revoke_t, TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayInformation,object> DpiChanged;
function onDpiChanged(eventArgs) { /* Your code */ }
displayInformation.addEventListener("dpichanged", onDpiChanged);
displayInformation.removeEventListener("dpichanged", onDpiChanged);
- or -
displayInformation.ondpichanged = onDpiChanged;
Public Custom Event DpiChanged As TypedEventHandler(Of DisplayInformation, Object)
Type d'événement
TypedEventHandler<DisplayInformation,IInspectable>