I am trying to follow standard MSDN steps to form up MVVM architecture in WPF. My folders and class hierarchy are as below.
Models => FormModel.cs ViewModels => MainViewModel.cs => ViewModelBase.cs Views => MainView.xaml
and
=> App.xaml
Please consider these above all in standard approach.
Now I want to create RelayCommand method about which I don't have any idea. Can you please tell me where to put it? Should I create a separate Command folder? Or under any of above folders? Also give an example of RelayCommand if possible as I don't know how to implement RelayCommand method.