共用方式為


PinchGestureUpdatedEventArgs 建構函式

定義

多載

PinchGestureUpdatedEventArgs(GestureStatus)

使用預設值建構新的 PinchGestureUpdatedEventArgs 物件。

PinchGestureUpdatedEventArgs(GestureStatus, Double, Point)

使用指定的值建構新的 PinchGestureUpdatedEventArgs 物件。

PinchGestureUpdatedEventArgs(GestureStatus)

來源:
PinchGestureUpdatedEventArgs.cs
來源:
PinchGestureUpdatedEventArgs.cs

使用預設值建構新的 PinchGestureUpdatedEventArgs 物件。

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)

參數

status
GestureStatus

新的筆勢狀態。

適用於

PinchGestureUpdatedEventArgs(GestureStatus, Double, Point)

來源:
PinchGestureUpdatedEventArgs.cs
來源:
PinchGestureUpdatedEventArgs.cs

使用指定的值建構新的 PinchGestureUpdatedEventArgs 物件。

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)

參數

status
GestureStatus

筆勢正在啟動、執行中,還是已結束。

scale
Double

捏合筆勢的目前縮放比例。

origin
Point

捏合筆勢的更新原點。

備註

捏合的起源是捏合手勢的中心,如果用戶在縮放時翻譯捏合,就會變更。 當手勢開始時,應用程式開發人員可能會想要儲存捏合原點,並將其用於該筆勢的所有縮放作業。

適用於