共用方式為


Geolocator.PositionChanged 事件

定義

更新位置時引發。

// Register
event_token PositionChanged(TypedEventHandler<Geolocator, PositionChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
Geolocator::PositionChanged_revoker PositionChanged(auto_revoke_t, TypedEventHandler<Geolocator, PositionChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<Geolocator,PositionChangedEventArgs> PositionChanged;
function onPositionChanged(eventArgs) { /* Your code */ }
geolocator.addEventListener("positionchanged", onPositionChanged);
geolocator.removeEventListener("positionchanged", onPositionChanged);
- or -
geolocator.onpositionchanged = onPositionChanged;
Public Custom Event PositionChanged As TypedEventHandler(Of Geolocator, PositionChangedEventArgs) 

事件類型

Windows 需求

應用程式功能
location ID_CAP_LOCATION [Windows Phone]

備註

您可以使用傳遞至事件處理常式的 PositionChangedEventArgs 物件來存取事件的相關資訊。

提示

使用模擬器時,您必須手動變更模擬的位置,才能觸發 PositionChanged 事件。

適用於

另請參閱