private void btnSpeech_Click(object sender, EventArgs e)
{
SpeechVoiceSpeakFlags flag = SpeechVoiceSpeakFlags.SVSFlagsAsync;
//Item(0)单词男声Sam
//Item(1)单词男声Mike
//Item(2)单词女声Mary
//Item(3)中文发音,如果是英文,就依单词字母一个一个发音
//Speach.instance().AnalyseSpeak(txtContent.Text.Trim());
voice.Voice = voice.GetVoices(string.Empty, string.Empty).Item(3);
voice.Speak(txtContent.Text.Trim(), flag);
}
中文发音终于找到了,当Item(3)时如果是中文就是中文发音,如果是英文,就依单词字母一个一个发音。