I have textbox. Its updatesourcetrigger property is set to lostfocus. I dont want to set it to proportychanged.
Now lets say, my WPF form is already dirty and user is updating the textbox. Now user directly press CTRL + S key(i.e. it invokes SAVE command) when focus is in textbox only.
Now updated textbox value is not reflected in viewmodel when save command is invoked.(i.e. my view and viewmodel data is not synchronized.)
Can I somehow pull data from view to viewmodel before command invokes or can I call textbox lostfocus event before invoking command.
Thanks in advance....