0

如何下载 Cortana 语音命令 xml 架构定义?我发现的示例项目中列出的 url 指向这个 url:

http://schemas.microsoft.com/voicecommands/1.1

但是,当我浏览到该 url 时,什么都看不到。Intellisense 适用于我创建的 xml 文档元素,因此我只能假设它能够从该 url 加载架构。

4

2 回答 2

2

在我的机器上,文件位于

C:\Program 文件 (x86)\Microsoft Visual Studio 12.0\Xml\Schemas\1033

在那个位置有许多文件,包括

WindowsPhoneVoiceCommandDefinition_v11.xsd

这是命名空间 http://schemas.microsoft.com/voicecommands/1.1的架构定义文件

于 2015-02-15T15:05:47.763 回答
1

您可以找到有关语音命令定义 (VCD) 元素和属性 v1.1的有用信息

这是一个完整的 VCD 示例

<?xml version="1.0" encoding="utf-8" ?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
  <CommandSet xml:lang="en-us" Name="HomeControlCommandSet_en-us">
    <CommandPrefix>HomeControl</CommandPrefix>
    <Example>Control alarm, temperature, light and others</Example>

    <Command Name="Activate_Alarm">
      <Example>Activate alarm</Example>
      <ListenFor>[Would] [you] [please] activate [the] alarm [please]</ListenFor>
      <ListenFor RequireAppName="BeforeOrAfterPhrase">Activate alarm</ListenFor>
      <ListenFor RequireAppName="ExplicitlySpecified">Activate {builtin:AppName} alarm</ListenFor>
      <Feedback>Activating alarm</Feedback>
      <Navigate />
    </Command>

    <Command Name="Change_Temperature">
      <Example>Change temperature to 25º degrees</Example>
      <ListenFor>Change temperature to {temperature} degrees</ListenFor>
      <Feedback>Changing temperature to {temperature} degrees</Feedback>
      <Navigate />
    </Command>

    <Command Name="Change_Light_Color">
      <Example>Change light color to yellow</Example>
      <ListenFor>Change light color to {colors}</ListenFor>
      <Feedback>Changing light color to {colors}</Feedback>
      <Navigate />
    </Command>

    <PhraseList Label="colors">
      <Item>yellow</Item>
      <Item>green</Item>
      <Item>red</Item>
    </PhraseList>

    <PhraseTopic Label="temperature">
    </PhraseTopic>

  </CommandSet>
</VoiceCommands>

欲了解更多信息,请访问此链接http://talkitbr.com/2015/07/13/integrando-a-cortana-em-seu-aplicativo-windows-10

于 2015-07-14T12:02:22.677 回答