I have an app that uses <FocusOut>
binding to automatically save the edits in an Entry
to a list.
There is no problem saving the Entry
text when using TAB
to navigate through the Entries or when I click on another Entry, but If I change the text on one Entry and then if I mouse-click on a ListBox
in another frame, <FocusOut>
doesn't work on the last selected Entry and the information in it is not registered.
How can I avoid this without resorting to a Save
button on the GUI? For every selection in the ListBox
there are different Entry
boxes, so the user would have to press the Save
button numerous times. I would like to avoid that.