MapControl.MapTapped 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當使用者點選 MapControl 或按一下滑鼠左鍵時發生。 MapInputEventArgs的實例會提供此事件的資料。
// Register
event_token MapTapped(TypedEventHandler<MapControl, MapInputEventArgs const&> const& handler) const;
// Revoke with event_token
void MapTapped(event_token const* cookie) const;
// Revoke with event_revoker
MapControl::MapTapped_revoker MapTapped(auto_revoke_t, TypedEventHandler<MapControl, MapInputEventArgs const&> const& handler) const;
public event TypedEventHandler<MapControl,MapInputEventArgs> MapTapped;
function onMapTapped(eventArgs) { /* Your code */ }
mapControl.addEventListener("maptapped", onMapTapped);
mapControl.removeEventListener("maptapped", onMapTapped);
- or -
mapControl.onmaptapped = onMapTapped;
Public Custom Event MapTapped As TypedEventHandler(Of MapControl, MapInputEventArgs)