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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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); } |
|
|
|
|