0

基于此演示文稿中的代码:http: //channel9.msdn.com/Series/MVA-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-在 Windows-Phone-8 中

...我尝试将“LocationTracking”添加到 WMAppManifest.xml,但没有显示的 xaml:

<Tasks>
<DefaultTask Name="_default" NavigationPage="MainPage.xaml">
      <BackgroundExecution>
        <ExecutionType Name="LocationTracking" />
      </BackgroundExecution>
</DefaultTask>
</Tasks>

...也不是以下内容,类似于编译器似乎想要的东西:

  <ExtendedTask>
    <ExecutionType Name="LocationTracking" />
  </ExtendedTask>

...会编译。

有人如何让这个工作?

4

1 回答 1

1

你在那里的第一个代码片段工作得很好。您不需要添加整个<Task>元素,因为它已经是 WmAppmanfiest 的一部分,只需添加<BackgroundExecution/>嵌套元素。

有关端到端示例,请参阅本文,您可以在此处下载示例代码。

于 2012-12-27T01:39:34.993 回答