SysHolographicWindowingEnvironment.StatusChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Evento generato quando viene modificato lo stato della shell olografica.
Importante
Questa API è disponibile solo per i componenti del sistema operativo Windows. Le chiamate a queste API avranno esito negativo in fase di esecuzione per tutti gli altri processi. Queste API possono essere modificate o rimosse nelle versioni future di Windows.
// 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)
Tipo evento
TypedEventHandler<SysHolographicWindowingEnvironment,Object>
TypedEventHandler<SysHolographicWindowingEnvironment,IInspectable>