Icon color in the background of Windows 8

I am developing a WPF application. My clients want to use it on Windows 8, and it works correctly. But they complain about the background color of the application icon on the Home screen.

So can you show me how to change it in Visual Studio or some tricks? I found some tools on Google to customize it, but using tools, and I want this to happen in the Installer or Property project ...

thanks enter image description here

+4
source share
3 answers

Change the color of the application icon in the application manifest file.

Here is the part of the application manifest in which you can change the image

App tile background

In my case, the color bacground # 464646 you can change it to any thing you want and update for users :)

For this reason, Microsoft always advises using the Transparent Png logo and a single background color for the application bar.

+3
source

This background color of the application icon in Windows 8 is the default behavior of Windows 8. It displays the background color of the application icon using the "dominant" color of the application icon. If your icon has a dominant brown color, it will display a brown background.

This is also the same default behavior when you hover over the launch of application icons on the Windows 7 taskbar. To improve the look, try changing the application icon to use neutral colors or light colors instead of dark colors.

Or, you can change the icon of your application to use a single colored icon (for example, white) on a transparent background to reflect flat Windows Store application theme icons in Windows 8 or use full rectangle icons such as games in Windows 8.

Example:

enter image description here

0
source

There is a similar question and answer: Kasper does not work for the background color of the UWP tile , but does not apply to Windows 8, for those who are looking for a UWP solution.

According to Anobik , set the color on the application manifest page. However, since it was found by Kasper , the value must be set to HEX for it to work as expected.

0
source

Source: https://habr.com/ru/post/1501770/


All Articles