I have a UWP app in the Windows 10 app store (World Time Clock). This app lets user pin live secondary tiles that display text that updates every minute (to show the current time in different cities around the world). These live text tiles are created as "adaptive tiles" using XML shown below:
Currently, these live text tiles have a solid background color #000000 (black) pulled from the app manifest. The latest version of Windows 10 for phone has a setting use start screen tile transparency; it provides a nice effect but only for the Microsoft utilities. See screen shot below. Unfortunately, I cannot figure out how to allow the background for my text tiles to be transparent/translucent. I would expect the Windows to adjust the alpha channel/opacity/transparency; but, it does not. Also, the background tile color I can set in the manifest is RGB not ARGB; it does NOT allow specifying a alpha channel value. Does anyone know if it is possible for non-Microsoft apps to have translucent tile backgrounds on live text tiles? If so, any suggestion about how to achieve this effect (Microsoft semitransparent background and my opaque background tiles shown below)?
BackgroundColor="transparent"
, maybe you can try that? – Thomas Schneiter