gpt4 book ai didi

wpf - WPF 中的 Aero 白光?

转载 作者:行者123 更新时间:2023-12-02 12:28:58 24 4
gpt4 key购买 nike

如何在 WPF 中的控件后面添加 Aero 白光?
我指的是 Vista/7 中窗口标题栏中的发光效果。

最佳答案

这个不相关的问题似乎有答案......
Outer bevel effect on text in WPF

我只需要在文本 block 后面有一个矩形...

    <Rectangle Height="{Binding ElementName=textBlock1, Path=ActualHeight}" HorizontalAlignment="{Binding ElementName=textBlock1, Path=HorizontalAlignment}" Margin="{Binding ElementName=textBlock1, Path=Margin}" VerticalAlignment="{Binding ElementName=textBlock1, Path=VerticalAlignment}" Width="{Binding ElementName=textBlock1, Path=ActualWidth}" Fill="White" Opacity="0.5">
<Rectangle.Stroke>
<SolidColorBrush />
</Rectangle.Stroke>
<Rectangle.Effect>
<BlurEffect Radius="10" KernelType="Gaussian" />
</Rectangle.Effect>
</Rectangle>

当您替换代码中的所有“textBlock”时,这将对任何控件起作用!
而且看起来和航空发光一模一样!

关于wpf - WPF 中的 Aero 白光?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6331131/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com