maui-linux/Xamarin.Forms.Core/PanUpdatedEventArgs.cs

27 строки
524 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
using System;
namespace Xamarin.Forms
{
public class PanUpdatedEventArgs : EventArgs
{
public PanUpdatedEventArgs(GestureStatus type, int gestureId, double totalx, double totaly) : this(type, gestureId)
{
TotalX = totalx;
TotalY = totaly;
}
public PanUpdatedEventArgs(GestureStatus type, int gestureId)
{
StatusType = type;
GestureId = gestureId;
}
public int GestureId { get; }
public GestureStatus StatusType { get; }
public double TotalX { get; }
public double TotalY { get; }
}
}