NumericUpDownValueChangedEventArgs.cs 445 B

12345678910111213141516
  1. using Avalonia.Interactivity;
  2. namespace Avalonia.Controls
  3. {
  4. public class NumericUpDownValueChangedEventArgs : RoutedEventArgs
  5. {
  6. public NumericUpDownValueChangedEventArgs(RoutedEvent routedEvent, double oldValue, double newValue) : base(routedEvent)
  7. {
  8. OldValue = oldValue;
  9. NewValue = newValue;
  10. }
  11. public double OldValue { get; }
  12. public double NewValue { get; }
  13. }
  14. }