次の方法で共有


SysHolographicWindowingEnvironment.IsHomeGestureReadyChanged イベント

定義

ホーム ジェスチャが準備完了状態に入るか、状態を離れると発生するイベント。 この API は、Windows オペレーティング システムのコンポーネントでのみ使用できます。

// Register
event_token IsHomeGestureReadyChanged(TypedEventHandler<SysHolographicWindowingEnvironment, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
SysHolographicWindowingEnvironment::IsHomeGestureReadyChanged_revoker IsHomeGestureReadyChanged(auto_revoke_t, TypedEventHandler<SysHolographicWindowingEnvironment, IInspectable const&> const& handler) const;
public event TypedEventHandler<SysHolographicWindowingEnvironment,object> IsHomeGestureReadyChanged;
function onIsHomeGestureReadyChanged(eventArgs) { /* Your code */ }
sysHolographicWindowingEnvironment.addEventListener("ishomegesturereadychanged", onIsHomeGestureReadyChanged);
sysHolographicWindowingEnvironment.removeEventListener("ishomegesturereadychanged", onIsHomeGestureReadyChanged);
- or -
sysHolographicWindowingEnvironment.onishomegesturereadychanged = onIsHomeGestureReadyChanged;
Public Custom Event IsHomeGestureReadyChanged As TypedEventHandler(Of SysHolographicWindowingEnvironment, Object) 

イベントの種類

Windows の要件

デバイス ファミリ
Windows Holographic System Implementation Extension SDK (10.0.18362.0 で導入)
API contract
Windows.System.Implementation.Holographic.HoloSysImplementationContract (v2.0 で導入)

注釈

これらの API の呼び出しは、Windows オペレーティング システムのコンポーネント以外のすべてのプロセスで実行時に失敗します。 これらの API は、今後の Windows リリースで変更または削除される可能性があります。

適用対象