Reputation: 1249
I am trying to set the text color on my UWP app's primary Start Menu tile so that it is black. (I am doing this because my app's icon calls for a white background, and you cannot see white text on a white background.) I found the answer to this question, but it discusses Windows 8 apps, and the UI described in the answer does not seem to exist anymore when developing for Windows 10. Does anyone know how to do this on a Windows 10 UWP app?
Upvotes: 1
Views: 887
Reputation: 14212
The way of doing this in a UWP app has changed slightly. Set the ForegroundText
attribute to "dark"
in the VisualElements
node.
Upvotes: 6