Compartir a través de


PinchGestureUpdatedEventArgs Constructores

Definición

Sobrecargas

PinchGestureUpdatedEventArgs(GestureStatus)

Crea un nuevo objeto PinchGestureUpdatedEventArgs con los valores predeterminados.

PinchGestureUpdatedEventArgs(GestureStatus, Double, Point)

Crea un nuevo objeto PinchGestureUpdatedEventArgs con los valores especificados.

PinchGestureUpdatedEventArgs(GestureStatus)

Source:
PinchGestureUpdatedEventArgs.cs
Source:
PinchGestureUpdatedEventArgs.cs

Crea un nuevo objeto PinchGestureUpdatedEventArgs con los valores predeterminados.

public:
 PinchGestureUpdatedEventArgs(Microsoft::Maui::GestureStatus status);
public PinchGestureUpdatedEventArgs (Microsoft.Maui.GestureStatus status);
new Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs : Microsoft.Maui.GestureStatus -> Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs
Public Sub New (status As GestureStatus)

Parámetros

status
GestureStatus

Nuevo estado del gesto.

Se aplica a

PinchGestureUpdatedEventArgs(GestureStatus, Double, Point)

Source:
PinchGestureUpdatedEventArgs.cs
Source:
PinchGestureUpdatedEventArgs.cs

Crea un nuevo objeto PinchGestureUpdatedEventArgs con los valores especificados.

public:
 PinchGestureUpdatedEventArgs(Microsoft::Maui::GestureStatus status, double scale, Microsoft::Maui::Graphics::Point origin);
public PinchGestureUpdatedEventArgs (Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin);
new Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs : Microsoft.Maui.GestureStatus * double * Microsoft.Maui.Graphics.Point -> Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs
Public Sub New (status As GestureStatus, scale As Double, origin As Point)

Parámetros

status
GestureStatus

Si el gesto empieza, está en curso o ha finalizado.

scale
Double

Escala actual del gesto de reducir.

origin
Point

Origen actualizado del gesto de reducir.

Comentarios

El origen de la pellizcar es el centro del gesto de reducir y cambia si el usuario traduce su pellizco mientras escala. Es posible que los desarrolladores de aplicaciones quieran almacenar el origen de reducir cuando comienza el gesto y usarlo para todas las operaciones de escalado de ese gesto.

Se aplica a