我有一个图像作为背景的窗口。在那个窗口上,我还有按钮和其他控件。
这是我的窗口样式:
<Style x:Key="MyWindow" TargetType="{x:Type Window}">
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="ImagesmyImage.png" />
</Setter.Value>
</Setter>
<Setter Property="Effect">
<Setter.Value>
<BlurEffect Radius="20" />
</Setter.Value>
</Setter>
</Style>
问题是模糊效果应用于整个窗口,而不仅仅是背景图像。所以,我的纽扣也很模糊,这不是我想要的。我只想模糊图像背景,而不是按钮。我该怎么做呢?
不是使用ImageBrush作为窗口的背景,而是添加一个Image
控件作为窗口顶层容器的第一个(最低)元素,并设置效果:
<Window ...>
<Grid>
<Image Source="ImagesmyImage.png" Stretch="Fill">
<Image.Effect>
<BlurEffect Radius="20"/>
</Image.Effect>
</Image>
<!-- other UI elements -->
</Grid>
</Window>
如果你真的需要一个背景刷,你可以使用VisualBrush
代替ImageBrush,像这样:
<Style TargetType="Window">
<Setter Property="Background">
<Setter.Value>
<VisualBrush>
<VisualBrush.Visual>
<Image Source="ImagesmyImage.png">
<Image.Effect>
<BlurEffect Radius="20"/>
</Image.Effect>
</Image>
</VisualBrush.Visual>
</VisualBrush>
</Setter.Value>
</Setter>
...
</Style>
为了裁剪模糊背景笔刷的边界,您可以调整Viewbox
(默认情况下以相对单位给出),如下所示:
<VisualBrush Viewbox="0.05,0.05,0.9,0.9">
当然,精确值取决于图像的绝对大小。您还可以通过设置ViewboxUnits="Absolute"
:
<VisualBrush Viewbox="0,0,1024,1280" ViewboxUnits="Absolute">