I am showing dialog window when I double click on Grid row as below
this.ShowDialogWindow("Details", itemDetailView);
I have few textboxes and checkboxes on the Window. After I make few changes, if I click on 'X' on top of window, I want to update those fields in database.
How can I get dialog window 'X' in WPF MVVM ?
If it is not possible, I want to take away 'X' and place custom SAVE and CLOSE button in that place.
Apprecite inputs.