4

我正在尝试修改从应用程序动态创建的 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 下没有名为 VoiceComands 的类。我认为它可能适用于 Windows 10,所以我深入挖掘并提出了一个VoiceCommandManager也没有我需要的枚举的类。谁能帮我动态修改我的 Windows Phone 8.1(RunTime) VCD。提前致谢。

4

1 回答 1

1
        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" });
        }
于 2015-12-15T00:03:32.763 回答