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