I have a textbox that is bounded to a decimal?
that is part of a class:
<TextBox PlaceholderText="Fee" Text="{x:Bind ClassObject.Fee, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
However this still allows me to input alphabetic characters and doesn't update the decimal value in the class.
How should I handle the input of a decimal?
into a textbox?