If you are so kind as to respond to my questions you should know first... Everything I know about c# and wpf is self-taught. I prefer small/simple words and explanations as the intellectual ones zoom right over my head. :) So now that we have established that I'm not so bright...
I'm giving in and trying to learn MVVM... the thing that has always prevented me from doing so is the Commands. So I'm trying to set things straight in my head. I've found this article which towards the bottom explains custom commands.
One of the things I'm just not getting is ... well it seems like a whole bunch of extra code just do something that could be handled in one line using a routed command.
A class that creates a custom command, then in another class the CanExecute and Executed Commands, then the xaml for Window.CommandBindings then the Command on the actual control...
So if I want to create a click event for a button I have to go to 4 places and create code for what could take me one line using a routedevent. Did I just start with a bad example? And frankly I think behaviors would be much simpler to use....
But this is my main question I guess... Say I am creating navigation commands... A GoBack() and GoForward() command to be precise. In the xaml for the Window.CommandBindings do I have to list all the Command Bindings in xaml or is it possible to create a class full of all the canexecute and executed commands and just bind to that in a general way?
If you have the time and would be so kind, please help set me straight on an easy way to approach commands.
Thanks a Bunch.
~Christine