共用方式為


SysHolographicWindowingEnvironment.StatusChanged 事件

定義

當全像攝影殼層的狀態變更時所引發的事件。

重要

此 API 僅適用于 Windows 作業系統的元件。 對這些 API 的呼叫會在執行時間失敗,其他所有進程都會失敗。 未來 Windows 版本中可能會修改或移除這些 API。

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

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

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

事件類型

適用於