summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ValueChangedEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/ValueChangedEventArgs.cs')
-rw-r--r--Xamarin.Forms.Core/ValueChangedEventArgs.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/ValueChangedEventArgs.cs b/Xamarin.Forms.Core/ValueChangedEventArgs.cs
new file mode 100644
index 00000000..8ea718c4
--- /dev/null
+++ b/Xamarin.Forms.Core/ValueChangedEventArgs.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace Xamarin.Forms
+{
+ public class ValueChangedEventArgs : EventArgs
+ {
+ public ValueChangedEventArgs(double oldValue, double newValue)
+ {
+ OldValue = oldValue;
+ NewValue = newValue;
+ }
+
+ public double NewValue { get; private set; }
+
+ public double OldValue { get; private set; }
+ }
+} \ No newline at end of file