Good day. Im creating a grid like this (with shadow). everything would be fine, but i can't do a shadow border with transparent background, so the background of grid can't be transparent (it's critical). Is there a solution to this problem? current
<Grid Visibility="{Binding InfoPanelVisibility}" Grid.Column="1" Grid.Row="0" Grid.RowSpan="2">
<Border Background="White" BorderThickness="1,0,0,0" >
<Border.Effect>
<DropShadowEffect BlurRadius="8" Color="WhiteSmoke" Direction="250"></DropShadowEffect>
</Border.Effect>
</Border>
<Grid.Background>
<SolidColorBrush Color="White" Opacity="0.4" />
</Grid.Background>
<ScrollViewer>
...
</ScrollViewer>
</Grid>