This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi! When you use the PercentageTextBox with a minimum value >= 10, it doesn't let you enter any new number anymore at all after it was cleared. Since numbers are entered digit by digit and any single digit is smaller than 10, the only remaining method to enter a value is by pasting it. Is there a way to prevent that and check the minimum value when the focus is lost? I tried UpdateSourceTrigger=LostFocus in the binding of no avail. Thanks! |
|
|
Hello To work around this, you can set the RangeConstraintMode property to be either OnLostFocus or OnLostFocusOrReturn. Also, make sure to set the Minimum to 0.10 instead of 10. Thanks pointing this out, I've made a note to improve the default behavior in a future version. Jason Fauchelle |
|
|
Thanks for the rapid answer! I actually set the minimum to 0.1 and it still happened. Your suggestion worked however. Thanks for that. Bengt |
|