UWP Cortana没有PhraseList

时间:2016-06-29 08:24:08

标签: c# uwp cortana

我想用UWP应用程序实现Cortana,并且我很难找到在命令前缀后询问随机内容的解决方案。

我知道我可以动态生成PhraseList,但是,这不是重点。这是我的实际VCD文件:

<?xml version="1.0" encoding="utf-8" ?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
<CommandSet xml:lang="fr" Name="MyAppCommand_fr">
<CommandPrefix>MyApp</CommandPrefix>

<Command Name="showContent">

  <ListenFor RequireAppName="BeforePhrase">{randomcontent}</ListenFor>
  <Feedback>Searching for {randomcontent}</Feedback>
  <Navigate />
</Command>

<!-- What I want here, is to get rid of PhraseList -->
<PhraseList Label="randomcontent">
  <Item>Random Content</Item>
</PhraseList>

</CommandSet>
</VoiceCommands>

有没有办法实现这个目标?

由于

2 个答案:

答案 0 :(得分:2)

你也可以使用:

 <PhraseTopic Label="searchParam" Scenario="Search"/>

所以你会:

<Command Name="showContent">    
  <ListenFor RequireAppName="BeforePhrase">{randomcontent}</ListenFor>
  <Feedback>Searching for {randomcontent}</Feedback>
  <Navigate />
</Command>

<PhraseList Label="randomcontent" Scenario="Search"/>

答案 1 :(得分:1)

所以,我找到了解决方案:用<PhraseTopic Label="randomcontent" Scenario="Dictation"> </PhraseTopic>

替换PhraseList

感谢Andrew Pilley和他在这篇文章中的回答:UWP Cortana PhraseTopic