wpf中ImageBrush的图片很模糊,大家遇到过吗解决办法

wpf中ImageBrush的图片很模糊,大家遇到过吗Grid.BackgroundImageBrush ViewportUnitsRelativeToBound

wpf中ImageBrush的图片很模糊,大家遇到过吗
<Grid.Background>
  <ImageBrush ViewportUnits="RelativeToBoundingBox" ImageSource="../Images/login/gg_472_03.png" Stretch="None"/>
  </Grid.Background>

这样运行的时候背景图片很模糊,大家遇到过吗?有什么解决办法

[解决办法]
在页面(Window/UserControl)加上
RenderOptions.BitmapScalingMode="NearestNeighbor"
试试