private void SelectTool(QuiverEditorTool tool)
 {
     if (model.SelectedTool == tool)
     {
         return;
     }
     model.SelectTool(tool);
 }
 public ToolButtonClickedEventArgs(QuiverEditorTool tool)
 {
     Tool = tool;
 }
Beispiel #3
0
 public ToolSelectedEventArgs(QuiverEditorTool previousTool, QuiverEditorTool newTool)
 {
     PreviousTool = previousTool;
     NewTool      = newTool;
 }
Beispiel #4
0
 public SelectToolKeyDownEventArgs(QuiverEditorTool tool)
 {
     Tool = tool;
 }