DisplayInformation.OrientationChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a propriedade CurrentOrientation ou NativeOrientation é alterada devido a uma alteração de modo ou uma alteração de monitor.
// Register
event_token OrientationChanged(TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void OrientationChanged(event_token const* cookie) const;
// Revoke with event_revoker
DisplayInformation::OrientationChanged_revoker OrientationChanged(auto_revoke_t, TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayInformation,object> OrientationChanged;
function onOrientationChanged(eventArgs) { /* Your code */ }
displayInformation.addEventListener("orientationchanged", onOrientationChanged);
displayInformation.removeEventListener("orientationchanged", onOrientationChanged);
- or -
displayInformation.onorientationchanged = onOrientationChanged;
Public Custom Event OrientationChanged As TypedEventHandler(Of DisplayInformation, Object)
Tipo de evento
TypedEventHandler<DisplayInformation,IInspectable>
Comentários
O evento OrientationChanged ocorre somente quando a orientação da exibição ou do monitor é alterada e não necessariamente quando a orientação do aplicativo é alterada. Para determinar a orientação do aplicativo para fins de layout, use a propriedade ApplicationView.Value .