我创建了一个没有样式的窗口并添加了自定义边框。我需要我的窗户投下阴影。
<Border BorderBrush="#000000 "
BorderThickness="1,0,1,1" Width="400"
Height="400"
VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
CornerRadius="10, 10, 0, 0"
Background="Black">
<Border.Effect>
<DropShadowEffect Color="Black" Direction="320"
ShadowDepth="5" Opacity="1" BlurRadius="5" />
</Border.Effect></Border>
但是当我像这样设置宽度和高度时,我的阴影消失了:
Width="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type Window}}, Path=Width}"
请帮我找到解决方案。感谢
答案 0 :(得分:1)
由于我们没有完整的解决方案范围,我必须假设Border位于分配给窗口样式的ControlTemplate中。请记住,如果您要将DropShadowEffect应用于根窗口,则需要填充它,否则您将看不到它。将Padding =“10”应用于Border,您应该看到它。
答案 1 :(得分:0)
尝试添加X&amp; Y阴影的厚度到您的Windows尺寸
答案 2 :(得分:0)
不要对根视觉效果应用效果!在这种情况下,它们适用于视觉树下的所有儿童,并且将导致性能降低。 使用下一个模式:
<Grid x:Name="RootWindowGrid">
<Border x:Name="BorderWithEffect" Margin="5">
<Border.Effect>
<DropShadowEffect Color="Black" Direction="320" ShadowDepth="5" Opacity="1" BlurRadius="5" />
</Border.Effect>
</Border>
<Border x:Name="RootBorder_ForAll_Another_Window_Visuals" Margin="5"/>
</Grid>
保证金取决于效果强度。