Hello, I'm learning MVVM through a project and I got stuck on something simple.
I have a button that updates a Listview. I have a command in the ViewModel that make the right things but I want to select the new row and get the focus on a textbox after I click the button.
The question is: How do I update my UI after executing a command?
If I need to change my windows Title when an operation have been made, I use a property on the ViewModel that is binded to the Window's title and it's changed when I need it but, I don't know how to get focus on a control when a command has been executed.
Thank you.