Dalstroem / FusionMVVM

[Deprecated] FusionMVVM is a toolkit made for WPF, and provides some easy-to-use features for creating MVVM applications, with focus on dependency injection and loosely-coupled design.
MIT License
0 stars 0 forks source link

RelayCommand #14

Closed Dalstroem closed 9 years ago

Dalstroem commented 9 years ago

Execute a command in the ViewModel.

Usage

private RelayCommand SaveCommand = new RelayCommand(Save);
private RelayCommand DeleteCommand = new RelayCommand(Delete, CanDelete);
Dalstroem commented 9 years ago

Implemented in commit 127414594565892dfbaa8e8ae47a4db966e7dfca.