コード例 #1
0
ファイル: Dictions.cs プロジェクト: dasvex/engpopup
 public Dictions(DictionsControl dictions)
 {
     this.Dictions_ = dictions;
     currentDiction = new DictionsControl(new DictionInfo().GetAllDictions());
     InitializeComponent();
 }
コード例 #2
0
ファイル: MainContext.cs プロジェクト: dasvex/engpopup
 void popup_MenuClick(object sender,EventArgs e)
 {
     DictionsControl tmpcont = new DictionsControl(new DictionInfo().GetAllDictions());
     tmpcont.AddInUsingDictions(popup.LastRow.TableName);
     AConsoleCommand command = new CommandDisableWord(tmpcont);
     command.ExecuteAndGetResponse( new CommandParser.ImputCommand(" "+popup.LastRow.word));
 }