Efekt cienia okna WPF

Jestem nowy w technologii WPF. Mam następującą deklarację okna w WPF:

<Window x:Class="CustomWindows.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="480" Width="640" ScrollViewer.VerticalScrollBarVisibility="Disabled" WindowStyle="None" AllowsTransparency="True">
    <Window.Effect>
        <DropShadowEffect BlurRadius="15" Direction="-90" RenderingBias="Quality" ShadowDepth="2"/>
    </Window.Effect>
    <Grid>

    </Grid>
</Window>

Ale kiedy go uruchomię, cień nie pojawia się. Co mogę zrobić lub gdzie jest błąd?

questionAnswers(1)

yourAnswerToTheQuestion