This commit is contained in:
Wiesław Šoltés 2016-05-01 21:47:29 +02:00
Родитель 7cd8c81705
Коммит 6c9ac4a5d0
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -98,6 +98,7 @@ namespace SpiroNet.Perspex.Views
_vm.IsFilledCommand = Command.Create(_vm.Editor.ToggleIsFilled);
_vm.IsClosedCommand = Command.Create(_vm.Editor.ToggleIsClosed);
_vm.IsTaggedCommand = Command.Create(_vm.Editor.ToggleIsTagged);
_vm.ToolCommand = Command<string>.Create(_vm.Editor.ToggleTool);
_vm.PointTypeCommand = Command<string>.Create(_vm.Editor.TogglePointType);
_vm.ExecuteScriptCommand = Command<string>.Create(_vm.Editor.ExecuteScript);
}

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

@ -71,6 +71,7 @@ namespace SpiroNet.Wpf.Views
_vm.IsFilledCommand = Command.Create(_vm.Editor.ToggleIsFilled);
_vm.IsClosedCommand = Command.Create(_vm.Editor.ToggleIsClosed);
_vm.IsTaggedCommand = Command.Create(_vm.Editor.ToggleIsTagged);
_vm.ToolCommand = Command<string>.Create(_vm.Editor.ToggleTool);
_vm.PointTypeCommand = Command<string>.Create(_vm.Editor.TogglePointType);
_vm.ExecuteScriptCommand = Command<string>.Create(_vm.Editor.ExecuteScript);
}