This commit is contained in:
Wiesław Šoltés 2016-09-01 12:19:27 +02:00 коммит произвёл GitHub
Родитель 01f1ad291c
Коммит 8a6a62c509
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -35,13 +35,13 @@ namespace ReactiveHistorySample.ViewModels
this.Name.ObserveWithHistory(name => layer.Name = name, layer.Name, history).AddTo(this.Disposable);
UndoCommand = new ReactiveCommand(history.CanUndo, false);
UndoCommand.Subscribe(_ => history.Undo());
UndoCommand.Subscribe(_ => history.Undo()).AddTo(this.Disposable);;
RedoCommand = new ReactiveCommand(history.CanRedo, false);
RedoCommand.Subscribe(_ => history.Redo());
RedoCommand.Subscribe(_ => history.Redo()).AddTo(this.Disposable);;
ClearCommand = new ReactiveCommand(history.CanClear, false);
ClearCommand.Subscribe(_ => history.Clear());
ClearCommand.Subscribe(_ => history.Clear()).AddTo(this.Disposable);;
}
public void Dispose()