DisplayInformation.DisplayContentsInvalidated Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Tritt auf, wenn die Anzeige neu gezeichnet werden muss.
// Register
static event_token DisplayContentsInvalidated(TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
static void DisplayContentsInvalidated(event_token const* cookie) const;
// Revoke with event_revoker
static DisplayInformation::DisplayContentsInvalidated_revoker DisplayContentsInvalidated(auto_revoke_t, TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
public static event TypedEventHandler<DisplayInformation,object> DisplayContentsInvalidated;
function onDisplayContentsInvalidated(eventArgs) { /* Your code */ }
Windows.Graphics.Display.DisplayInformation.addEventListener("displaycontentsinvalidated", onDisplayContentsInvalidated);
Windows.Graphics.Display.DisplayInformation.removeEventListener("displaycontentsinvalidated", onDisplayContentsInvalidated);
- or -
Windows.Graphics.Display.DisplayInformation.ondisplaycontentsinvalidated = onDisplayContentsInvalidated;
Public Shared Custom Event DisplayContentsInvalidated As TypedEventHandler(Of DisplayInformation, Object)
Ereignistyp
TypedEventHandler<DisplayInformation,IInspectable>
Hinweise
Dieses Ereignis ist statisch.
Da dieses Ereignis statisch ist, wird empfohlen, direkt über das DisplayInformation-Objekt und nicht über die aktuellen physischen Anzeigeinformationen zuzugreifen, die Sie von einem Aufruf der DisplayInformation.GetForCurrentView-Methode erhalten.