2
我有一個窗口與圖像作爲背景。在那個窗口上我也有按鈕和其他控件。窗口背景圖像模糊效果
這是我爲窗口樣式:
<Style x:Key="MyWindow" TargetType="{x:Type Window}">
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="Images\myImage.png" />
</Setter.Value>
</Setter>
<Setter Property="Effect">
<Setter.Value>
<BlurEffect Radius="20" />
</Setter.Value>
</Setter>
</Style>
的問題是,模糊效果應用到整個窗口,而不只是背景圖像。所以,我的按鈕也很模糊,這不是我想要的。我只想讓圖像背景變得模糊,而不是按鈕。我怎樣才能做到這一點?
這工作,但它增加了周圍的模糊圖像約5 milimeters黑色邊框,並且使圖像5mm以下,這樣有餘地邊境。我怎樣才能刪除邊框? –
我不知道邊界來自哪裏。這當然是你的應用程序中的某個地方。你嘗試過哪種方法? – Clemens
第二個,用VisualBrush。 –