This commit is contained in:
Wiesław Šoltés 2016-09-01 14:21:13 +02:00 коммит произвёл GitHub
Родитель 9508b26b4a
Коммит a48729d127
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()).AddTo(this.Disposable);;
UndoCommand.Subscribe(_ => history.Undo()).AddTo(this.Disposable);
RedoCommand = new ReactiveCommand(history.CanRedo, false);
RedoCommand.Subscribe(_ => history.Redo()).AddTo(this.Disposable);;
RedoCommand.Subscribe(_ => history.Redo()).AddTo(this.Disposable);
ClearCommand = new ReactiveCommand(history.CanClear, false);
ClearCommand.Subscribe(_ => history.Clear()).AddTo(this.Disposable);;
ClearCommand.Subscribe(_ => history.Clear()).AddTo(this.Disposable);
}
public void Dispose()