Ejemplo n.º 1
0
 protected ApplicationCommand(ApplicationViewModel vm, IScheduler scheduler)
     : this(vm, Observable.Never <bool>(), scheduler)
 {
 }
Ejemplo n.º 2
0
 protected ApplicationCommand(ApplicationViewModel vm, IObservable <bool> canExecuteSource, bool initialValue = true)
     : this(vm, canExecuteSource, Scheduler.Immediate, initialValue)
 {
 }
Ejemplo n.º 3
0
 protected ApplicationCommand(ApplicationViewModel vm)
     : this(vm, Scheduler.Immediate)
 {
 }