I have just started learning WPF. I currently have the MenuItem File -> EXIT on my main window.
I want to know how i should add functionality to the Exit MenuItem. As i see it there are 3 main choices
1) Add an Event handler to the Click event of the Exit menuitem. Then code the event handler in the window code behind
2) Add a Close command to to Exit menuitem and add a binding in the main window that handles the command. Again this involves adding code to the window code behind.
3) Add a command to the Exit menuItem that calls a method in the ViewModel. This removes code from the views code behind, but means the ViewModel needs to hold a reference to the View.
Which approach would best suit this situation?
I don't want to get to hung up on not putting any code at all into the Views code-behind. However, since this is action only reaaly involves the view, maybe method 1 or 2 would be best. Any thoughts?