WPF creates transparent colors

The normal color should be 6 hexadecimal representations, so there is no transparent color.

E.g:

BackGround = "#FF0000"

If you want to use a transparent color, you need to use 8 hexadecimals, so you can set the transparent color:

BackGround = “#00000000”

Guess you like

Origin blog.csdn.net/kakaluote81/article/details/101289849