PreviewTeamView.IsFullScreenChanged 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í.
Indica que la ventana de la aplicación ahora está en pantalla completa.
// Register
event_token IsFullScreenChanged(TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
// Revoke with event_token
void IsFullScreenChanged(event_token const* cookie) const;
// Revoke with event_revoker
PreviewTeamView::IsFullScreenChanged_revoker IsFullScreenChanged(auto_revoke_t, TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,object> IsFullScreenChanged;
function onIsFullScreenChanged(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("isfullscreenchanged", onIsFullScreenChanged);
previewTeamView.removeEventListener("isfullscreenchanged", onIsFullScreenChanged);
- or -
previewTeamView.onisfullscreenchanged = onIsFullScreenChanged;
Public Custom Event IsFullScreenChanged As TypedEventHandler(Of PreviewTeamView, Object)
Tipo de evento
TypedEventHandler<PreviewTeamView,IInspectable>
Comentarios
Para comprobar el estado actual, compruebe la propiedad IsFullScreen.