ISpeechRecognizer.DisplayUI
ISpeechRecognizer.DisplayUI
我尝试在 C# 中使用 SAPI 5.4 中的 ISpeechRecognizer.DisplayUI 来引入 Add Pronunciation UI 并且它引入了 UI 但它没有给定的单词,它在这种情况下单词 "example".
SpSharedRecoContext ssrc = new SpSharedRecoContext();
ISpeechRecognizer ispSpeechReco = ssrc.Recognizer;
ispSpeechReco.DisplayUI(this.Handle.ToInt32(), "Additional Pronunciation", "AddPronunciation", "example");
当 typeOfUI 为 "AddPronunciation" 时,实现会忽略额外的数据参数。有关哪些 typeOfUI 参数支持额外数据的详细信息,请参阅 this blog post。
我尝试在 C# 中使用 SAPI 5.4 中的 ISpeechRecognizer.DisplayUI 来引入 Add Pronunciation UI 并且它引入了 UI 但它没有给定的单词,它在这种情况下单词 "example".
SpSharedRecoContext ssrc = new SpSharedRecoContext();
ISpeechRecognizer ispSpeechReco = ssrc.Recognizer;
ispSpeechReco.DisplayUI(this.Handle.ToInt32(), "Additional Pronunciation", "AddPronunciation", "example");
当 typeOfUI 为 "AddPronunciation" 时,实现会忽略额外的数据参数。有关哪些 typeOfUI 参数支持额外数据的详细信息,请参阅 this blog post。