Why deletion of last character in Entry not triggers observableProperty? (MVVM, Maui)
I have an input field where the user can enter numbers. When any number is typed, the model updates successfully, which I can confirm using a breakpoint. However, when there is only one character left and it is deleted, the update does not occur, and the model retains the previous number instead of updating.
Why is this happening, and how can I ensure the model updates correctly when the last character is deleted?
ViewModel
Xaml
Why is this happening, and how can I ensure the model updates correctly when the last character is deleted?
ViewModel
Xaml
<Entry Keyboard= "Numeric" Text= "{Binding Value}" />