public MainWindow() { InitializeComponent(); var p = new PersonCommandViewModel() { FirstName = "yama", LastName = "to", Age = 100, }; this.DataContext = p; }
public DecrementAgeCommand(PersonCommandViewModel viewmodel) { vm = viewmodel; }