I\'m having an issue with passing a parameter to a relaycommand using the GalaSoft MVVM Light framework. I know that mvvm light\'s implementation of relaycommand doesn\'t u
Another way to declare relay commands, will help to reduce your code
public RelayCommand ChartCommand { set { RelayCommand chartCommand = new RelayCommand(e => ExecuteChartCommand(e)); } } public void ExecuteChartCommand(string vendor) { }