C#???????????????
???????????? ???????[ 2016/7/26 10:55:14 ] ??????????????????? .NET
??????System.Speech????????£?SpeechSynthesizer??????????????????????????~~
??????????Windows?????????????System.Speech?????沿???
????????????????????????????SpeechSynthesizer????Щ??????
using System.Windows.Forms;
using System.Speech;
using System.Speech.Synthesis;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private SpeechSynthesizer ss;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender?? EventArgs e)
{
ss = new SpeechSynthesizer();
}
private void buttonRead_Click(object sender?? EventArgs e)
{
ss.Rate = trackBarSpeed.Value;
ss.Volume = trackBarVolumn.Value;
ss.SpeakAsync(txtMsg.Text);
}
private void buttonPause_Click(object sender?? EventArgs e)
{
ss.Pause();
}
private void buttonContinue_Click(object sender?? EventArgs e)
{
ss.Resume();
}
private void buttonRecord_Click(object sender?? EventArgs e)
{
SpeechSynthesizer ss = new SpeechSynthesizer();
ss.Rate = trackBarSpeed.Value;
ss.Volume = trackBarVolumn.Value;
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "Wave Files|*.wav";
ss.SetOutputToWaveFile(sfd.FileName);
ss.Speak(txtMsg.Text);
ss.SetOutputToDefaultAudioDevice();
MessageBox.Show("??????~~"??"???");
}
private void buttonClose_Click(object sender?? EventArgs e)
{
Application.Exit();
}
}
}
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11