php editor Strawberry brings you a tutorial on how to change the color of Win10 tiles. The tile function of Win10 allows us to view application information more conveniently, and the color of the tiles can also be adjusted according to our own preferences. This article will introduce you to how to change the color of Win10 tiles to make your desktop more personalized and beautiful.
1. Pin the icon that needs to change the tile color to the start screen. Taking WeChat as an example, right-click and in the menu item that opens, Select More - Open file location.
2. Enter the folder and right-click on the WeChat file again. In the menu item that opens, select the location where the file is opened and enter the real icon. The location is where the software is installed.
#3. This tile icon is ultimately associated with the WeChat.exe executable program file.
4. Create a new xml file under the current path and name it WeChat.VisualElementsManifest (this file can modify the tile color). Naming convention: must be in the same path as the application , and must be named xxxx.VisualElementsManifest, where xxxx must be the same as the name of the .exe file pointed to by the tile icon.
5. Choose to open this .xml file in Notepad mode. Next, we enter the following code in the .xml file:
6. Among them, the most important thing is BackgroundColor="#07c160", which is the key to setting the background color of the tile. ForegroundText="light", the background color can be set to light or dark (for a light background, the tile text needs to be black, which can be modified with ForegroundText="dark").
7. Then return to the previous directory, right-click on the WeChat icon, in the menu item that opens, select Properties, then switch to shortcuts and click Change icon, and finally click OK. The purpose of this is to refresh the shortcut so that it can obtain the content of the file just now and change the background color.
8. Finally, reopen the start menu and you can see that the WeChat icon on the tile interface has turned green.
#9. Finally, if you need to change the tile color back, just delete the created .XML file.
The above is the detailed content of How to change the tile color in win10. Tutorial on how to change the tile color in win10.. For more information, please follow other related articles on the PHP Chinese website!