0
我有我的窗口的背景爲PNG圖像WPF - 下落式陰影窗口的背景PNG圖像
<Window.Background>
<ImageBrush ImageSource="image.png" Viewport="0,0,1,1"/>
</Window.Background>
我怎麼能放下陰影的PNG背景圖片採取相同的形狀圖像..
我有我的窗口的背景爲PNG圖像WPF - 下落式陰影窗口的背景PNG圖像
<Window.Background>
<ImageBrush ImageSource="image.png" Viewport="0,0,1,1"/>
</Window.Background>
我怎麼能放下陰影的PNG背景圖片採取相同的形狀圖像..
<Window.Effect>
<DropShadowEffect/>
</Window.Effect>
<Window.Background>
<ImageBrush ImageSource="image.png" Viewport="0,0,1,1"/>
</Window.Background>
隨着你設置的背景..設置Window's Effect
爲DropShadowEffect
。
這可能是沒有用的,因爲陰影落在窗口之外並且它不可見。
我建議你有Panel
或Border
併爲此設置Margin
。現在將其設置爲Background
和Effect
..它將可見。
<Border Margin="10">
<Border.Effect>
<DropShadowEffect/>
</Border.Effect>
<Border.Background>
<ImageBrush ImageSource="image.png" Viewport="0,0,1,1"/>
</Border.Background>
</Border>