次の方法で共有


SpatialGestureRecognizer.RecognitionStarted イベント

定義

ジェスチャ認識が開始されると発生します (これが最初に発生するイベントです)。

// 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 トリガーまたはボタンが押されたときに発生します。

適用対象