c# windows-runtime windows-phone-8.1 cortana vcd

c# - Modifique dinĂ¡micamente VCD Windows 8.1(RT)



windows-runtime windows-phone-8.1 (1)

Estoy tratando de modificar el VCD que creé dinámicamente desde la aplicación. Me referí a varios artículos / documentaciones. Tengo el siguiente código:

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”});

Lo utilicé en mi aplicación y dice que no hay ninguna clase llamada VoiceComands en ApplicationModel. Pensé que podría ser para Windows 10, así que profundicé y VoiceCommandManager una clase de VoiceCommandManager que tampoco tiene las enumeraciones que necesito. ¿Alguien puede ayudarme a modificar dinámicamente mi VCD de Windows Phone 8.1 (RunTime)? Gracias por adelantado.


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" }); }