GuidanceNavigator.GuidanceUpdated Ereignis

Definition

Tritt auf, wenn die Navigationsanleitung aktualisiert wurde.

Anmerkung

Diese API ist nicht für alle Windows-Apps verfügbar. Sofern Ihr Entwicklerkonto nicht speziell von Microsoft bereitgestellt wird, schlagen Aufrufe dieser API zur Laufzeit fehl. Weitere Informationen zum Windows.Services.Maps.Guidance Namespace können Sie mit Ihrem Microsoft-Kontoteammitarbeiter verwenden.

// Register
event_token GuidanceUpdated(TypedEventHandler<GuidanceNavigator, GuidanceUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GuidanceNavigator::GuidanceUpdated_revoker GuidanceUpdated(auto_revoke_t, TypedEventHandler<GuidanceNavigator, GuidanceUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<GuidanceNavigator,GuidanceUpdatedEventArgs> GuidanceUpdated;
function onGuidanceUpdated(eventArgs) { /* Your code */ }
guidanceNavigator.addEventListener("guidanceupdated", onGuidanceUpdated);
guidanceNavigator.removeEventListener("guidanceupdated", onGuidanceUpdated);
- or -
guidanceNavigator.onguidanceupdated = onGuidanceUpdated;
Public Custom Event GuidanceUpdated As TypedEventHandler(Of GuidanceNavigator, GuidanceUpdatedEventArgs) 

Ereignistyp

Gilt für: