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

17 строки
313 B
C#

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; }
}
}