gpt4 book ai didi

c# - 创建与标题具有相同属性的标签

转载 作者:行者123 更新时间:2023-11-30 22:37:32 26 4
gpt4 key购买 nike

注意我窗口标题的字母是如何发光的:

enter image description here

如何创建具有相同效果的标签?

最佳答案

在 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>

这是它的样子:

Text Glow Effect

关于c# - 创建与标题具有相同属性的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6475200/

26 4 0