Ejemplo n.º 1
0
        public async Task InstallVCD()
        {
            try
            {
                StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///VoiceCommand.xml"));

                await AIService.InstallVoiceCommands(file);
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex);
            }
        }