SpatialGestureRecognizer.RecognitionStarted イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ジェスチャ認識が開始されると発生します (これが最初に発生するイベントです)。
// Register
event_token RecognitionStarted(TypedEventHandler<SpatialGestureRecognizer, SpatialRecognitionStartedEventArgs const&> const& handler) const;
// Revoke with event_token
void RecognitionStarted(event_token const* cookie) const;
// Revoke with event_revoker
SpatialGestureRecognizer::RecognitionStarted_revoker RecognitionStarted(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialRecognitionStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialRecognitionStartedEventArgs> RecognitionStarted;
function onRecognitionStarted(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("recognitionstarted", onRecognitionStarted);
spatialGestureRecognizer.removeEventListener("recognitionstarted", onRecognitionStarted);
- or -
spatialGestureRecognizer.onrecognitionstarted = onRecognitionStarted;
Public Custom Event RecognitionStarted As TypedEventHandler(Of SpatialGestureRecognizer, SpatialRecognitionStartedEventArgs)
イベントの種類
注釈
SpatialRecognitionStartedEventArgs イベントは、アクティブなジェスチャがなく、ジェスチャ認識エンジンが対話をキャプチャするように通知されると発生します。 イベントは、 操作が SpatialGestureSettings で要求されたジェスチャの少なくとも 1 つをトリガーできる場合にのみ発生します。
手の操作の場合、このイベントは指を押すと発生します。
音声操作では、"選択" などのシステム音声コマンドが読み上げられると、このイベントが発生します。
モーション コントローラーの場合、このイベントは Select トリガーまたはボタンが押されたときに発生します。