I have a string property bound to a textbox. On the same screen there are 2 buttons in the App bar, one of the being the accept button. Now if I start typing in the textbox and hit the accept button without unfocusing the textbox, when I access the property in my viewmodel its says its empty. But if I tap outside the textbox and it loses focus, the property is updated.
Is there a way to manually update the binding so that it can accurately show what was typed in the textbox?
I’ve handled that by using the TextBox Text property directly.
Even tho my TextBox is bound to the Name property. This ensures that it will always be up-to-date