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