我正在尝试让计算机读取短文

时间:2016-01-10 10:53:46

标签: c#

我在Windows窗体应用程序C#中有一个文本“hello world”。当表单打开时,应该通过计算机在语音中问好世界是否容易建议?

我没有任何想法,因此我无法在此处编写代码。

喜欢

label1.text.read();

1 个答案:

答案 0 :(得分:2)

查看SpeechSynthesizer

// Initialize a new instance of the SpeechSynthesizer.
SpeechSynthesizer synth = new SpeechSynthesizer();

// Configure the audio output. 
synth.SetOutputToDefaultAudioDevice();

// Speak a string.
synth.Speak("This example demonstrates a basic use of Speech Synthesizer");