ProjectionManager.ProjectionDisplayAvailableChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando un proyector u otra pantalla secundaria está disponible o no está disponible.
// Register
static event_token ProjectionDisplayAvailableChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void ProjectionDisplayAvailableChanged(event_token const* cookie) const;
// Revoke with event_revoker
static ProjectionManager::ProjectionDisplayAvailableChanged_revoker ProjectionDisplayAvailableChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> ProjectionDisplayAvailableChanged;
function onProjectionDisplayAvailableChanged(eventArgs) { /* Your code */ }
Windows.UI.ViewManagement.ProjectionManager.addEventListener("projectiondisplayavailablechanged", onProjectionDisplayAvailableChanged);
Windows.UI.ViewManagement.ProjectionManager.removeEventListener("projectiondisplayavailablechanged", onProjectionDisplayAvailableChanged);
- or -
Windows.UI.ViewManagement.ProjectionManager.onprojectiondisplayavailablechanged = onProjectionDisplayAvailableChanged;
Public Shared Custom Event ProjectionDisplayAvailableChanged As EventHandler(Of Object)