WPF window shadow effect

后端 未结 1 2006
孤街浪徒
孤街浪徒 2020-12-25 13:26

I am new to WPF technology. I have the following window declaration in WPF:



        
相关标签:
1条回答
  • 2020-12-25 13:56

    DropShadowEffect cannot be applied to a Window. Instead, if you want to override the default window appearance, you have to apply the effect to some other element contained in the window:

    <Window x:Class="WpfApplication2.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="MainWindow" Height="350" Width="525" WindowStyle="None" AllowsTransparency="True" Background="Transparent">
        <Grid Margin="20" Background="Red">
            <Grid.Effect>
                <DropShadowEffect BlurRadius="15" Direction="-90" RenderingBias="Quality" ShadowDepth="2"/>
            </Grid.Effect>
            ...
    
        </Grid>
    </Window>
    
    0 讨论(0)
提交回复
热议问题