MapControlDataHelper.BusinessLandmarkClick 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于使用者點選商務位置,或使用滑鼠左鍵按一下它時。 MapControlBusinessLandmarkClickEventArgs的實例會提供此事件的資料。
注意
此 API 不適用於所有 Windows 應用程式。 除非您的開發人員帳戶是由 Microsoft 特別布建,否則對此 API 的呼叫會在執行時間失敗。 如需此 API 和 Windows.Services.Maps.LocalSearch 命名空間的詳細資訊,請與您的 Microsoft 帳戶小組代表合作。
// Register
event_token BusinessLandmarkClick(TypedEventHandler<MapControl, MapControlBusinessLandmarkClickEventArgs const&> const& handler) const;
// Revoke with event_token
void BusinessLandmarkClick(event_token const* cookie) const;
// Revoke with event_revoker
MapControlDataHelper::BusinessLandmarkClick_revoker BusinessLandmarkClick(auto_revoke_t, TypedEventHandler<MapControl, MapControlBusinessLandmarkClickEventArgs const&> const& handler) const;
public event TypedEventHandler<MapControl,MapControlBusinessLandmarkClickEventArgs> BusinessLandmarkClick;
function onBusinessLandmarkClick(eventArgs) { /* Your code */ }
mapControlDataHelper.addEventListener("businesslandmarkclick", onBusinessLandmarkClick);
mapControlDataHelper.removeEventListener("businesslandmarkclick", onBusinessLandmarkClick);
- or -
mapControlDataHelper.onbusinesslandmarkclick = onBusinessLandmarkClick;
Public Custom Event BusinessLandmarkClick As TypedEventHandler(Of MapControl, MapControlBusinessLandmarkClickEventArgs)