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

|| 注意窗口标题的字母如何发光: 如何创建具有相同效果的标签?     
已邀请:
        在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>
它是这样的:     
        您要使用DrawThemeTextEx。     

要回复问题请先登录注册