I'm running very old binaries, so not sure if it's been resolved in the meanwhile.
When entering an amount of ie 0.2345 I would randomly hit the numpad to add entropy to the last digits.

ACK, not sure if it's fixed already or not.
It is not fixed yet.
In addition we should limit the field to accept only numbers and the decimal point.
It currently does this behind the scenes but does not show up in the GUI
looks like the PR made by @benthecarman here should make this very easy to resolve. Avalonia doesn't support MaxLength property out of the box at the moment.
looks like the PR made by @benthecarman here should make this very easy to resolve. Avalonia doesn't support MaxLength property out of the box at the moment.
That won't actually help, MaxLength defines the max length of the entire text in the box. We want to limit the text after the decimal point so MaxLength won't help here.
This probably needs a coercion like API either in Wasabi or Avalonia (possible: https://github.com/AvaloniaUI/Avalonia/pull/3287)
this is already implemented - closing.
Most helpful comment
That won't actually help,
MaxLengthdefines the max length of the entire text in the box. We want to limit the text after the decimal point soMaxLengthwon't help here.