GuidanceNavigator.Rerouted 事件

定义

重新路由导航指南时发生。

注意

此 API 不适用于所有 Windows 应用。 除非开发人员帐户是由Microsoft专门预配的,否则对此 API 的调用将在运行时失败。 有关 Windows.Services.Maps.Guidance 命名空间的详细信息,请与你的Microsoft帐户团队代表协作。

// Register
event_token Rerouted(TypedEventHandler<GuidanceNavigator, GuidanceReroutedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GuidanceNavigator::Rerouted_revoker Rerouted(auto_revoke_t, TypedEventHandler<GuidanceNavigator, GuidanceReroutedEventArgs const&> const& handler) const;
public event TypedEventHandler<GuidanceNavigator,GuidanceReroutedEventArgs> Rerouted;
function onRerouted(eventArgs) { /* Your code */ }
guidanceNavigator.addEventListener("rerouted", onRerouted);
guidanceNavigator.removeEventListener("rerouted", onRerouted);
- or -
guidanceNavigator.onrerouted = onRerouted;
Public Custom Event Rerouted As TypedEventHandler(Of GuidanceNavigator, GuidanceReroutedEventArgs) 

事件类型

适用于