Change Tile Color for Non Windows Store Apps?
Asked Answered
A

1

5

With Windows 8.1, the background color for desktop application tiles on the start screen are no longer grey but colored. It appears to me that the background color of the tile is selected by Windows by calculating the average icon color and selecting the closest matching color of the default tile color palette (e.g. one of our applications has a deep blue and grey icon but the tile background is still turqouise). Is it possible to change this color for non Windows Store (Desktop) Apps (perhaps within the application manifest)?

Avery answered 8/10, 2013 at 13:36 Comment(1)
+1 @Avery - the new tile colours are hideousLauricelaurie
A
8

This is documented in MSDN under How to customize Start screen tiles for desktop apps.

Sample XML:

<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VisualElements
        BackgroundColor="#FF0000" 
        ... other required attributes omitted for expository purposes...
    />
</Application>
Andre answered 8/10, 2013 at 13:53 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.