如何为通用Windows应用程序设置应用程序磁贴属性

问题描述:

这用于在appmanifest中完成,但该选项似乎已在Windows 10中消失?如何为通用Windows应用程序设置应用程序磁贴属性

瓷砖仍然在清单中。 Visual Studio 2015RC没有可视化清单编辑器,因此您需要直接编辑XML。您可以在uap:VisualElements documentation中找到完整模式,或者可以在基于向导或示例应用程序中看到基本知识:

<uap:VisualElements 
    DisplayName="App181" 
    Square150x150Logo="Assets\Logo.png" 
    Square44x44Logo="Assets\SmallLogo.png" 
    Description="App181" 
    BackgroundColor="#464646"> 
    <uap:SplashScreen Image="Assets\SplashScreen.png" /> 
    </uap:VisualElements>