標籤:style blog http color os 使用 ar div 代碼
使用SpeechSynthesizer類可以實現文本朗讀功能,位於 Windows.Media.SpeechSynthesis命名空間。有了它我們就可以實現有聲小說了,是不是很爽。下面給出一個將文字區塊的內容朗讀出來的例子,記得在應用的功能裡要勾選 麥克風。
關於SpeechSynthesizer類的詳細說明請參考:
http://technet.microsoft.com/zh-cn/sysinternals/system.speech.synthesis.speechsynthesizer(v=vs.95).aspx
mainpage頁面配置如下:
<Grid><StackPanel ><TextBox x:Name=”txtToSay” Width=”300″ Height=”90″ Margin=”0 2 0 12″ TextWrapping=”Wrap”/><Button Content=”開始朗讀” HorizontalAlignment=”Center” Click=”OnClick”/></StackPanel><MediaElement x:Name=”mdPlayer” Width=”0″ Height=”0″ AutoPlay=”True”/></Grid>
後台代碼如下:
private async void OnClick(object sender, RoutedEventArgs e){if (string.IsNullOrWhiteSpace(txtToSay.Text)) return;SpeechSynthesizer speech = new SpeechSynthesizer();//執行個體化對象// 朗讀文本SpeechSynthesisStream stream = await speech.SynthesizeTextToStreamAsync(txtToSay.Text);//將文字框的內容轉化為語音流輸出if (stream != null){this.mdPlayer.SetSource(stream, stream.ContentType);//將語音流設為MediaElement的源。}}
關於MediaElement的SetSource方法請查看:http://msdn.microsoft.com/zh-cn/library/windows/apps/xaml/br244338.aspx
小夢windows phone 8.1開發:語音朗讀