Browse Source

Merge pull request #2248 from DmitryZhelnin/fix-numericupdown

Fix ValueChanged event of NumericUpDown
pull/2251/head
Jumar Macato 7 years ago
committed by GitHub
parent
commit
50a3877c42
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.Controls/NumericUpDown/NumericUpDown.cs

2
src/Avalonia.Controls/NumericUpDown/NumericUpDown.cs

@ -812,7 +812,7 @@ namespace Avalonia.Controls
/// <summary>
/// Raised when the <see cref="Value"/> changes.
/// </summary>
public event EventHandler<SpinEventArgs> ValueChanged
public event EventHandler<NumericUpDownValueChangedEventArgs> ValueChanged
{
add { AddHandler(ValueChangedEvent, value); }
remove { RemoveHandler(ValueChangedEvent, value); }

Loading…
Cancel
Save