Exemple #1
0
 public void UpdateLable()
 {
     if (Current == ExamItem.Count)
     {
         FinishView();
         return;
     }
     lblShow.Text      = ExamItem[Current];
     lblTranslate.Text = string.Empty;
     Current++;
     if (ckbAuto.Checked)
     {
         APConfig.SpeechEnglish(lblShow.Text);
     }
 }
Exemple #2
0
 private void pbxSpeak_Click(object sender, EventArgs e)
 {
     APConfig.SpeechEnglish(lblShow.Text);
 }