зеркало из https://github.com/DeGsoft/maui-linux.git
24 строки
463 B
C#
24 строки
463 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
public class PinchGestureUpdatedEventArgs : EventArgs
|
|
{
|
|
public PinchGestureUpdatedEventArgs(GestureStatus status, double scale, Point origin) : this(status)
|
|
{
|
|
ScaleOrigin = origin;
|
|
Scale = scale;
|
|
}
|
|
|
|
public PinchGestureUpdatedEventArgs(GestureStatus status)
|
|
{
|
|
Status = status;
|
|
}
|
|
|
|
public double Scale { get; } = 1;
|
|
|
|
public Point ScaleOrigin { get; }
|
|
|
|
public GestureStatus Status { get; }
|
|
}
|
|
} |