Fix NumericUpDown text not updating when arrow keys are used

This commit is contained in:
Scrub 2024-04-04 01:01:34 -04:00 committed by GitHub
parent c7f4712b83
commit ab9c58c1d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -106,10 +106,12 @@ public class NumericUpDown : Control
if (e.Key == Key.Up)
{
Value += Increment;
SetText(true);
}
else if (e.Key == Key.Down)
{
Value -= Increment;
SetText(true);
}
}