summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PropertyChangingEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/PropertyChangingEventArgs.cs')
-rw-r--r--Xamarin.Forms.Core/PropertyChangingEventArgs.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/PropertyChangingEventArgs.cs b/Xamarin.Forms.Core/PropertyChangingEventArgs.cs
new file mode 100644
index 00000000..75c78994
--- /dev/null
+++ b/Xamarin.Forms.Core/PropertyChangingEventArgs.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace Xamarin.Forms
+{
+ public class PropertyChangingEventArgs : EventArgs
+ {
+ public PropertyChangingEventArgs(string propertyName)
+ {
+ PropertyName = propertyName;
+ }
+
+ public virtual string PropertyName { get; }
+ }
+} \ No newline at end of file