注意我的窗口标题的字母是如何发光的:
如何创建具有相同效果的标签?
在 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>
这就是它的样子: