I';I’我正试着用电脑读一篇短文

本文关键字:一篇 电脑 | 更新日期: 2023-09-27 18:29:37

我在Windows窗体应用程序C#中有一个文本"hello world"。当表格打开时,它应该通过电脑语音向世界问好,这很容易建议吗?

我没有任何想法,所以我无法在这里编写代码。

label1.text.read();

I';I’我正试着用电脑读一篇短文

看看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");