c# 文字转语音,如何实现循环读。
是引用了这个
using System.Speech.Synthesis;
private void btnplay_Click(object sender, EventArgs e)
{
if (string.IsNullOrWhiteSpace(textBox1.Text))
{
MessageBox.Show("内容不可为空");
return;
}
speech.Rate = this.Speed; //语速
speech.Volume = this.Volume; //声音
speech.SelectVoice(comboBox1.Text);//设置中文
speech.SpeakAsync(this.textBox1.Text);
}
以上代码是实现了播放功能。
目的,输入文字,实现循环播放,请各位帮忙一下。