You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Spinner, if you set Format="P0", e.g. to display Value '1' as '100 %', the value is set from 1 to 100 or to Maximum if the TextBox control of the Spinner loses focus. That's because TextBoxTextToValue() in Spinner.cs is called and uses the 100% as input value without "unformating" it to 1.
So I think, there should be an event which offers the possibility to validate the value from the TextBox before Value property is set.
The text was updated successfully, but these errors were encountered:
In Spinner, if you set Format="P0", e.g. to display Value '1' as '100 %', the value is set from 1 to 100 or to Maximum if the TextBox control of the Spinner loses focus. That's because TextBoxTextToValue() in Spinner.cs is called and uses the 100% as input value without "unformating" it to 1.
So I think, there should be an event which offers the possibility to validate the value from the TextBox before Value property is set.
The text was updated successfully, but these errors were encountered: