我有一个窗口在我的WPF应用程序与图像作为背景。我想模糊一下那个图像。我是这样做的:
这是我的窗口:
<Window x:Class="kiosk.UI.Views.PageSwitch"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="clr-namespace:myProjectName.Converters"
Title="PageSwitch" Height="1024" Width="1280"
Style="{StaticResource WindowStyle}"
WindowStyle="None" ResizeMode="NoResize"
WindowStartupLocation="CenterScreen">
</Window>
下面是我给它添加的样式:
<Style x:Key="WindowStyle" TargetType="{x:Type Window}">
<Setter Property="FontFamily" Value="Verdana" />
<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>
这工作-图像是模糊的。然而,在背景图像周围有一个厚约5毫米的黑色边框。为什么它会在那里,我怎样才能去除它?
下面是我尝试的替代方法:
<VisualBrush Viewbox="0, 0, 1280, 1024" ViewboxUnits="Absolute" >
和边界被删除,但图像被拉伸了很多。几乎一半的图片都没有显示。
我该如何解决这个问题?
按照你之前问题的答案来做。将图像控件放在Grid中,ClipToBounds
设置为true。
<VisualBrush>
<VisualBrush.Visual>
<Grid ClipToBounds="True">
<Image Source="ImagesmyImage.png">
<Image.Effect>
<BlurEffect Radius="20"/>
</Image.Effect>
</Image>
</Grid>
</VisualBrush.Visual>
</VisualBrush>
我做了类似的事情,但只是将图像作为元素添加到LayoutRoot。从这里,我将边距设置为减去模糊半径,以避免边缘模糊。如果你的黑边框渐渐淡出,我怀疑这就是问题所在。
<Image Source="pack://siteoforigin:,,,/image.jpg" Stretch="UniformToFill" Margin="-50">
<Image.Effect>
<BlurEffect Radius="100"/>
</Image.Effect>
</Image>