summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PanUpdatedEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/PanUpdatedEventArgs.cs')
-rw-r--r--Xamarin.Forms.Core/PanUpdatedEventArgs.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/PanUpdatedEventArgs.cs b/Xamarin.Forms.Core/PanUpdatedEventArgs.cs
new file mode 100644
index 00000000..4c9e9481
--- /dev/null
+++ b/Xamarin.Forms.Core/PanUpdatedEventArgs.cs
@@ -0,0 +1,27 @@
+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; }
+ }
+} \ No newline at end of file