引用
using System.Speech.Synthesis;
将下方代码写到From_Load方法里就ok了
Task.Run(() => // 异步执行
{
SpeechSynthesizer speech= new SpeechSynthesizer();
speech.Volume = 100; // 音量0-100
speech.Rate = -8; // 语速 越大语速越快
speech.Speak("欢迎来到我的世界");
});
引用
using System.Speech.Synthesis;
将下方代码写到From_Load方法里就ok了
Task.Run(() => // 异步执行
{
SpeechSynthesizer speech= new SpeechSynthesizer();
speech.Volume = 100; // 音量0-100
speech.Rate = -8; // 语速 越大语速越快
speech.Speak("欢迎来到我的世界");
});