Hey,
Where should I store event methods for button Click event ?Normally it's store in code behind of wpf page,
<Button Name="myButton" Click="myButton_Click">Click Me</Button>
but in MVVM it should be store in other view-model class and bind to click property of button like that??
<Button Name="myButton" Click="{Binding StaticResouces myButton_Click}">Click Me</Button>