2

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

在此处输入图像描述

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

4

2 回答 2

3

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

这就是它的样子:

文字发光效果

于 2011-06-25T02:46:38.417 回答
0

您想使用 DrawThemeTextEx。

于 2011-06-25T02:06:48.347 回答