Compartilhar via


PinchGestureUpdatedEventArgs Construtores

Definição

Sobrecargas

PinchGestureUpdatedEventArgs(GestureStatus)

Constrói um novo objeto PinchGestureUpdatedEventArgs com valores padrão.

PinchGestureUpdatedEventArgs(GestureStatus, Double, Point)

Constrói um novo objeto PinchGestureUpdatedEventArgs com os valores especificados.

PinchGestureUpdatedEventArgs(GestureStatus)

Origem:
PinchGestureUpdatedEventArgs.cs
Origem:
PinchGestureUpdatedEventArgs.cs

Constrói um novo objeto PinchGestureUpdatedEventArgs com valores padrão.

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

O novo status de gesto.

Aplica-se a

PinchGestureUpdatedEventArgs(GestureStatus, Double, Point)

Origem:
PinchGestureUpdatedEventArgs.cs
Origem:
PinchGestureUpdatedEventArgs.cs

Constrói um novo objeto PinchGestureUpdatedEventArgs com os 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

Se o gesto está iniciando, em execução ou terminou.

scale
Double

A escala atual do gesto de pinçagem.

origin
Point

A origem atualizada do gesto de pinçagem.

Comentários

A origem da pinça é o centro do gesto de pinça e muda se o usuário traduzir a pinça enquanto dimensiona. Os desenvolvedores de aplicativos podem querer armazenar a origem de pinça quando o gesto começar e usá-la para todas as operações de dimensionamento desse gesto.

Aplica-se a