SpeechSynthesizer 类下有没有哪个方法或属性来判断当前读到了哪个字,并且获取到这个字!
//绑定时间
speech.SpeakProgress += new EventHandler<SpeakProgressEventArgs>(speech_SpeakProgress);
//选中读的位置
private void speech_SpeakProgress(object sender, SpeakProgressEventArgs e)
{
this.richTextBox1.Select(e.CharacterPosition, e.CharacterCount);
}