Esempio n. 1
0
 public Testing_Review_Words()
 {
     InitializeComponent();
     this.Business = new Words_Management();
     this.Load    += Testing_Words_Load;
     this.btnCheck_Answer.Click += BtnCheck_Answer_Click;
     this.btnRightAnswer.Click  += BtnRightAnswer_Click;
     this.btnReloadTest.Click   += BtnReloadTest_Click;
 }
Esempio n. 2
0
 public Management_ListWord()
 {
     InitializeComponent();
     this.Business               = new Words_Management();
     this.Load                  += Management_Load;
     this.btnAdd_Word.Click     += btnAdd_Word_Click;
     this.btnDelete_Words.Click += btnDelete_Words_Click;
     this.btnEdit_Word.Click    += btnEdit_Word_Click;
     this.btnClose.Click        += BtnClose_Click;
     this.grdW.CellClick        += GrdW_CellClick;
     this.btnSearch_Word.Click  += btnSearch_Word_Click;
     this.cbSearch.KeyDown      += CbSearch_KeyDown;
 }
Esempio n. 3
0
 public Main_Interface()
 {
     InitializeComponent();
     this.Business = new Words_Management();
     speakEngW     = new Speak_Phonetic_Word();
     this.Load    += Main_Interface_Load;
     this.btnManage_ListWord.Click              += btnManage_ListWord_Click;
     this.btnInfo_TeamBuilding.Click            += btnInfo_TeamBuilding_Click;
     this.btnLookUp_Word_inWeb.Click            += btnLookup_Word_inWeb_Click;
     this.btnSpeak_Word.Click                   += btnSpeak_Word_Click;
     this.btnExport_and_Import_Data_Words.Click += btnExport_and_Import_Data_Words_Click;
     this.MaximizeBox    = false;
     this.cbWord.Click  += CbWord_Click;
     this.btnTest.Click += BtnTest_Click;
 }
Esempio n. 4
0
 public Export_and_Import_Data_Words()
 {
     InitializeComponent();
     business = new Words_Management();
     dataWord = new DataTable();
     this.btnExport_Data_Words.Click += btnExport_Data_Words_Click;
     this.btnImport_Data_Words.Click += btnImport_Data_Words_Click;
     this.btnSave_Data_Words.Click   += BtnSave_Click;
     this.btnReload.Click            += BtnReload_Click;
     this.Load += ExportandImport_Load;
     btnSave_Data_Words.Enabled                = false;
     this.grdForEX_IM.ReadOnly                 = true;
     this.grdForEX_IM.AllowUserToResizeRows    = false;
     this.grdForEX_IM.AllowUserToResizeColumns = false;
 }