注意窗口标题的字母是如何发光的:
如何创建具有相同效果的标签?
答案 0 :(得分:2)
在WPF中,您可以使用模糊覆盖文本上的普通文本以完成背景发光效果。
这是标记:
<Grid Background="CadetBlue">
<Grid Margin="20">
<TextBlock Text="Stack Overflow" FontSize="24" FontWeight="Bold" Foreground="AliceBlue">
<TextBlock.Effect>
<BlurEffect Radius="30"/>
</TextBlock.Effect>
</TextBlock>
<TextBlock Text="Stack Overflow" FontSize="24" FontWeight="Bold" Foreground="Black"/>
</Grid>
</Grid>
这就是它的样子:
答案 1 :(得分:1)