SpatialGestureRecognizer.NavigationCompleted イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
// Register
event_token NavigationCompleted(TypedEventHandler<SpatialGestureRecognizer, SpatialNavigationCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void NavigationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
SpatialGestureRecognizer::NavigationCompleted_revoker NavigationCompleted(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialNavigationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialNavigationCompletedEventArgs> NavigationCompleted;
function onNavigationCompleted(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("navigationcompleted", onNavigationCompleted);
spatialGestureRecognizer.removeEventListener("navigationcompleted", onNavigationCompleted);
- or -
spatialGestureRecognizer.onnavigationcompleted = onNavigationCompleted;
Public Custom Event NavigationCompleted As TypedEventHandler(Of SpatialGestureRecognizer, SpatialNavigationCompletedEventArgs)
イベントの種類
注釈
手動操作の場合、NavigationStarted イベントの後に指が離されると、SpatialNavigationCompletedEventArgs イベントが発生します。
音声操作の場合、このイベントは発生しません。
モーション コントローラーの操作の場合、このイベントは 、NavigationStarted イベントの後に Select トリガーまたはボタンが解放されたときに発生します。