зеркало из https://github.com/DeGsoft/maui-linux.git
17 строки
313 B
C#
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; }
|
|
}
|
|
} |