public virtual void BtnRestoreClickedHandler(BtnRestoreClickedCommand command)
 {
     this.BtnRestoreClicked(command.Sender as TodoItemViewModel);
 }
示例#2
0
 public virtual void ExecuteBtnRestoreClicked(BtnRestoreClickedCommand command)
 {
     command.Sender = TodoItem;
     TodoItem.BtnRestoreClicked.OnNext(command);
 }