Example #1
0
 public CommandUsingDictions(DictionsControl dictions)
     : base(".using","add / get using tables")
 {
     this.dictions = dictions;
 }
Example #2
0
 public CommandSelectWord(DictionsControl dictions)
     : base(".select","view word information")
 {
     this.dictions = dictions;
 }
Example #3
0
 public CommandSetPriority(DictionsControl dictions)
     : base(".priority","set priority call for word")
 {
     this.dictions = dictions;
 }
Example #4
0
 public CommandInsertWord(DictionsControl dictions)
     : base(".insert","insert new word (word , translate , remark* , priority*)")
 {
     this.dictions = dictions;
 }
Example #5
0
 public CommandEnableWord(DictionsControl dictions)
     : base(".enable","enable word")
 {
     this.dictions = dictions;
 }
Example #6
0
 public CommandDisableWord(DictionsControl dictions)
     : base(".disable","disable word")
 {
     this.dictions = dictions;
 }
Example #7
0
 public CommandDisableDictions(DictionsControl dictions)
     : base(".disusing","get not usings / remove from using tables")
 {
     this.dictions = dictions;
 }
Example #8
0
 public CommandDeleteWord(DictionsControl dictions)
     : base(".delete","delete word by template")
 {
     this.dictions = dictions;
 }