Тема: Проблема з DropShadowEffect, WPF
Доброго!
Маю таку проблему з моїм додатком у WPF – DropShadowEffect навколо Border по якійсь причині поступово "нарощується" і стає занадто жирним, на вигляд не тінь, а суцільна заливка кольором:
Хоча по задумці має бути таке:
Маю такий же код для Border в декількох різних вікнах, у одному з них все в порядку, в інших двох отаке "нарощування".
Ось код XAML для цього вікна:
<Window x:Class="RegistrationForm.UserPageWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:RegistrationForm"
mc:Ignorable="d"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
Title="Додаток для користувачів" Height="450" Width="800" WindowStartupLocation="CenterScreen">
<Grid Background="#f6f7eb">
<Border MinWidth="100" MaxWidth="500" Margin="15" Background="White" VerticalAlignment="Center" Padding="30" CornerRadius="10">
<Border.Effect>
<DropShadowEffect BlurRadius="30" Color="#e94f37" ShadowDepth="0" RenderingBias="Quality"/>
</Border.Effect>
<StackPanel>
<TextBlock Text="Кабінет користувача" FontSize="30" Margin="0,0,0,20" FontWeight="Bold" HorizontalAlignment="Center" />
<ListView Name="UserList" Margin="10">
<ListView.ItemTemplate>
<DataTemplate>
<WrapPanel>
<TextBlock Text="{Binding Login}" FontWeight="Bold"/>
<TextBlock Text=" | "/>
<TextBlock Text="{Binding Email}"/>
</WrapPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackPanel>
</Border>
</Grid>
</Window>