Ejemplo n.º 1
0
 public static IXCommand SetDependency(this IXCommand command, params INotifyPropertyChanged[] properties)
 {
     foreach (var property in properties)
     {
         property.PropertyChanged += (sender, args) => { command.ChangeCanExecute(); };
     }
     return(command);
 }