嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
使用微软huihui语音助手
private void tbarRate_Scroll(object sender, EventArgs e)
{
speechRate = tbarRate.Value;
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
private void btnPause_Click(object sender, EventArgs e)
{
if (paused)
{
speech.Resume();//继续
paused = false;
btnPause.Text = "暂停";
}
else
{
speech.Pause();//暂停
paused = true;
btnPause.Text = "继续";
}
}
private void linklblMsSpeech51_LinkClicked(object sender, EventArgs e)
{
if (DialogResult.Yes == MessageBox.Show("你是否确认安装微软中文男声语音库5.1?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
{
System.Diagnostics.Process.Start(Application.StartupPath "\\spchapi.exe");
try
{
System.Diagnostics.Process.Start(Application.StartupPath "\\Microsoft_TTS_51_chs.msi");
}
catch
{
MessageBox.Show("请检查操作系统中是否存在Windews Installer(MSI格式)安装程序支持文件。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
else
{
return;
}
}