WPF Effect 造成的字体模糊
Posted 梦机器
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF Effect 造成的字体模糊相关的知识,希望对你有一定的参考价值。
WPF 里面有个Effect ,暂且可以理解为 “特效” 分类。
但是有时候使用不恰当,容易出现各种毛病。
例如:
代码如下:
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal"> <Border Width="200" Height="100" Background="#5Eb978"> <Border.Effect> <DropShadowEffect BlurRadius="10" ShadowDepth="0"/> </Border.Effect> <TextBlock Text="这个是错误示范" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="25"></TextBlock> </Border> <Grid Width="200" Height="100" Margin="30,0,0,0"> <Border Width="200" Height="100" Background="#5Eb978"> <Border.Effect> <DropShadowEffect BlurRadius="10" ShadowDepth="0"/> </Border.Effect> </Border> <TextBlock Text="正确示范" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="25"></TextBlock> </Grid> </StackPanel>
提示:Border 级使用 Effect 造成 TextBlock 模糊。所以不能直接在有DropShadowEffect的Border内部添加展示元素。
以上是关于WPF Effect 造成的字体模糊的主要内容,如果未能解决你的问题,请参考以下文章
求解答CGAffineTransformScale造成字体模糊的问题