WP8语音识别界面导致未处理的异常

本文关键字:未处理 异常 语音识别 界面 WP8 | 更新日期: 2023-09-27 18:13:03

SpeechRecognizerUI sr = new SpeechRecognizerUI();
sr.Settings.ListenText = "Say the recipient and body of the E-Mail";
sr.Settings.ExampleText = "Mom saying Happy Mother's Day";
//await Speak("Say the recipient and body of the E-Mail"); // TTS prompt
var recoResult = await sr.RecognizeWithUIAsync();
MessageBox.Show(recoResult.RecognitionResult.Text);

这会抛出一个未处理的异常并导致WP8应用程序崩溃。我该如何解决这个问题?

WP8语音识别界面导致未处理的异常

您可能需要选择语音语言转到电话设置然后 speech

在我的设置中,语音语言被列为none,一旦我选择了一种语言,即英语(美国),它似乎可以工作。

参考这篇文章