显示任务栏应用程序悬停上的控件

时间:2019-04-15 01:30:11

标签: c# windows uwp uwp-xaml

UWP中是否可以像Spotify一样构建悬停UI:

enter image description here

我知道在UWP中,我们有系统控件来显示应用程序在后台运行时的控件,我们是否可以使用它来建立相同的体验,如果可以,那么我该怎么做。

我已经添加了<uap3:Capability Name="backgroundMediaPlayback" />功能,但是我遇到了错误。

Error   APPX0501    Validation error. error C00CE014: App manifest validation error: The app manifest must be valid as per schema: Line 62, Column 6, Reason: Element '{schemas.microsoft.com/appx/manifest/uap/windows10/3}Capability' is unexpected according to content model of parent element '{schemas.microsoft.com/appx/manifest/foundation/windows10}Capabilities'. Expecting: {schemas.microsoft.com/appx/manifest/foundation/windows10}DeviceCapability <Packing-Path>\bin\x64\Debug\AppxManifest.xml    1

1 个答案:

答案 0 :(得分:1)

  

我们可以用它来建立相同的体验吗,如果可以的话,我该怎么做。

当然,您可以通过添加背景媒体播放清单功能来启用背景音频。当您的应用最小化时,将显示播放控件。有关更多详细信息,请参阅Play media in the background 这是您可以参考的official code sample