다음을 통해 공유


PinchGestureUpdatedEventArgs 생성자

정의

오버로드

PinchGestureUpdatedEventArgs(GestureStatus)

기본값을 사용하여 새 PinchGestureUpdatedEventArgs 개체를 구성합니다.

PinchGestureUpdatedEventArgs(GestureStatus, Double, Point)

지정한 값을 가진 새 PinchGestureUpdatedEventArgs 개체를 구성합니다.

PinchGestureUpdatedEventArgs(GestureStatus)

Source:
PinchGestureUpdatedEventArgs.cs
Source:
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)

Source:
PinchGestureUpdatedEventArgs.cs
Source:
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

핀치 제스처의 업데이트된 원본입니다.

설명

핀치의 원점은 손가락 모으기 제스처의 중심이며, 사용자가 크기를 조정하는 동안 손가락 모으기를 번역하면 변경됩니다. 애플리케이션 개발자는 제스처가 시작될 때 핀치 원점을 저장하고 해당 제스처에 대한 모든 크기 조정 작업에 사용할 수 있습니다.

적용 대상