因此,我在几个组合框上使用了阴影效果。在大多数情况下,这种方法效果很好,但在here
中有3种效果似乎会影响文本和堆栈我使用的XAML:
<Style TargetType="{x:Type ComboBox}">
...
<Setter Property="Border.Effect">
<Setter.Value>
<DropShadowEffect Color="Black" Direction="300" ShadowDepth="3" BlurRadius="3" Opacity="0.5" />
</Setter.Value>
</Setter>
它们全都排列在一个堆栈面板中,我不使用TextOptions或类似的东西来影响文本渲染的质量。