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

14 строки
243 B
C#

using System;
namespace Xamarin.Forms
{
public class PropertyChangingEventArgs : EventArgs
{
public PropertyChangingEventArgs(string propertyName)
{
PropertyName = propertyName;
}
public virtual string PropertyName { get; }
}
}