在Windows 8.1中,开始屏幕上桌面应用程序磁贴的背景颜色不再是灰色而是彩色。在我看来,通过计算平均图标颜色并选择默认图块颜色调色板的最接近匹配颜色,Windows选择图块的背景颜色(例如,我们的一个应用程序具有深蓝色和灰色图标但是图块背景仍然是turqouise)。是否可以为非Windows应用商店(桌面)应用程序(可能在应用程序清单中)更改此颜色?
答案 0 :(得分:8)
这在How to customize Start screen tiles for desktop apps下的MSDN中有记录。
示例XML:
<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<VisualElements
BackgroundColor="#FF0000"
... other required attributes omitted for expository purposes...
/>
</Application>