次の方法で共有


SpatialGestureRecognizer.NavigationStarted イベント

定義

操作が ナビゲーション ジェスチャになったときに発生します。

// Register
event_token NavigationStarted(TypedEventHandler<SpatialGestureRecognizer, SpatialNavigationStartedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::NavigationStarted_revoker NavigationStarted(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialNavigationStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialNavigationStartedEventArgs> NavigationStarted;
function onNavigationStarted(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("navigationstarted", onNavigationStarted);
spatialGestureRecognizer.removeEventListener("navigationstarted", onNavigationStarted);
- or -
spatialGestureRecognizer.onnavigationstarted = onNavigationStarted;
Public Custom Event NavigationStarted As TypedEventHandler(Of SpatialGestureRecognizer, SpatialNavigationStartedEventArgs) 

イベントの種類

注釈

手動操作の場合、指が押されたときに SpatialNavigationStartedEventArgs イベントが発生し、小さなナビゲーション 配信不能ゾーンの外側に移動します。

音声操作の場合、このイベントは発生しません。

モーション コントローラーの操作の場合、このイベントは、Select トリガーまたはボタンが押された後、コントローラーが小さなナビゲーション 配信不能ゾーンの外に移動したときに発生します。

適用対象