Question

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)?

Was it helpful?

Solution

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>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top