问题描述
用C#完成,比如说选中几个字,然后用语音朗读出来?有API调用??请大神求解谢谢!!
解决方案
解决方案二:
不想复制黏贴了,你去这里看看吧,有一篇文章能帮助你的。http://www.yesky.com/263/1663263.shtml
解决方案三:
privatevoidbutton1_Click(objectsender,RoutedEventArgse){SpeechSynthesizerspeech=newSpeechSynthesizer();speech.Volume=100;speech.Rate=0;speech.Speak(this.textBox1.Text);}首先要添加引用system.speech
解决方案四:
添加不了这个system.speech哦?怎么弄??引用2楼的回复:
privatevoidbutton1_Click(objectsender,RoutedEventArgse){SpeechSynthesizerspeech=newSpeechSynthesizer();speech.Volume=100;speech.Rate=……
解决方案五:
http://download.csdn.net/detail/study_hard_01/4337710看一下这个保证可以
解决方案六:
这个是可以。。不是这是用什么写的。。这么奇怪??XAML?引用4楼的回复:
http://download.csdn.net/detail/study_hard_01/4337710看一下这个保证可以
解决方案七:
TTS:MicrosoftText-To-SpeechEngine(全文朗读引擎)SAPI:MicrosoftSpeechAPI(语音API)
解决方案八:
哎代码不是问题弄那些什么dll才是麻烦。。一直弄不成功。。哭死
解决方案九:
[Quote=引用3楼的回复:]添加不了这个system.speech哦?怎么弄??引用2楼的回复:第一步:在解决方案中,选中项目中的"引用" 右键→添加引用,在弹出的"添加引用"对话框中选中.Net选项卡,找到system.speech并选上→确定第二步:添加usingsystem.speech;
时间: 2024-12-08 15:25:36