我想知道如何在UWP应用中设置烤面包。我正在使用Visual Studio 2015,在Package.appxmanifest编辑器中没有任何选项。我试图mannualy编辑xml,msdn说你可以像那样添加mannualy。
<VisualElements
...
ToastCapable="true">
</VisualElements>
但我发现.appxmenifest就像那样
<uap:VisualElements DisplayName="Name" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Sample" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" ShortName="Name">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
<uap:InitialRotationPreference>
<uap:Rotation Preference="portrait" />
<uap:Rotation Preference="landscape" />
<uap:Rotation Preference="portraitFlipped" />
<uap:Rotation Preference="landscapeFlipped" />
</uap:InitialRotationPreference>
</uap:VisualElements>
如何实现吐司功能?请帮忙。
答案 0 :(得分:4)
在Windows 10中,您不再需要设置ToastCapable标志:
嗯,你肯定需要将ToastCapable设置为true 自8.1要求表明,否则你的祝酒将不起作用 8.1(在10中,我们停止了要求ToastCapable标志)。
来源:Comment on the official Quickstart guide
您可以在GitHub上的快速入门的full source code中自行验证。