DisplayInformation.StereoEnabledChanged 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.
Si verifica quando la proprietà StereoEnabled cambia perché il supporto per le modifiche 3D stereoscopiche.
// Register
event_token StereoEnabledChanged(TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void StereoEnabledChanged(event_token const* cookie) const;
// Revoke with event_revoker
DisplayInformation::StereoEnabledChanged_revoker StereoEnabledChanged(auto_revoke_t, TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayInformation,object> StereoEnabledChanged;
function onStereoEnabledChanged(eventArgs) { /* Your code */ }
displayInformation.addEventListener("stereoenabledchanged", onStereoEnabledChanged);
displayInformation.removeEventListener("stereoenabledchanged", onStereoEnabledChanged);
- or -
displayInformation.onstereoenabledchanged = onStereoEnabledChanged;
Public Custom Event StereoEnabledChanged As TypedEventHandler(Of DisplayInformation, Object)
Tipo evento
TypedEventHandler<DisplayInformation,IInspectable>