使用与标题相同的属性创建标签

时间:2011-06-25 01:26:57

标签: c# wpf glow

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

enter image description here

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

2 个答案:

答案 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>

这就是它的样子:

Text Glow Effect

答案 1 :(得分:1)