我正在尝试修改我从应用程序动态创建的VCD。我参考了各种文章/文件。我有以下代码:
Windows.ApplicationModel.VoiceCommands.VoiceCommnadDefinition.VoiceCommandSet commandSetEnUs;
if (Windows.ApplicationModel.VoiceCommands.VoiceCommandDefinitionManager.
InstalledCommandSets.TryGetValue(
"AdventureWorksCommandSet_en-us", out commandSetEnUs))
{
await commandSetEnUs.SetPhraseListAsync(
"destination", new string[] {“London”, “Dallas”, “New York”, “Phoenix”});我在我的应用程序中使用了它,它声明在ApplicationModel下没有名为ApplicationModel的类。我认为它可能适用于windows 10,所以我进行了更深入的研究,并提出了一个VoiceCommandManager类,它也没有我需要的枚举。有人能帮我动态修改Windows 8.1(RunTime) VCD吗?提前谢谢。
发布于 2015-12-15 00:03:32
Windows.Media.SpeechRecognition.VoiceCommandSet commandSetEnUs;
if (Windows.Media.SpeechRecognition.VoiceCommandManager.InstalledCommandSets.TryGetValue("AdventureWorksCommandSet_en-us", out commandSetEnUs))
{
await commandSetEnUs.SetPhraseListAsync(
"destination", new string[] { "London", "Dallas", "New York", "Phoenix" });
}https://stackoverflow.com/questions/34204021
复制相似问题