示例#1
0
 public BlockSelect(Tools.Selection tool)
 {
     this.tool   = tool;
     ID          = "character_blockSelect";
     MenuText    = "Block Select";
     ToolBarText = "Select";
     ToolTip     = "Starts selecting a block of text";
     Shortcut    = Keys.B | Keys.Alt;
 }
示例#2
0
 public Paste(Tools.Selection tool) : base(tool.Handler)
 {
     this.tool = tool;
     ID        = ActionID;
     MenuText  = "&Paste Block";
     ToolTip   = "Paste the selected region";
     Name      = "Paste";
     Shortcut  = Keys.Enter;
 }
示例#3
0
 public Deselect(Tools.Selection tool)
 {
     this.tool   = tool;
     ID          = "character_deselect";
     MenuText    = "&Deselect";
     ToolBarText = "Deselect";
     ToolTip     = "Clears the current selection";
     Shortcut    = Keys.Escape;
 }