Как растянуть background на всю форму? WPF C#

Вставляю background на форму, остаются внешние отступы, в параметрах не нашел ничего с этим связанного. Как убрать эти самые отступы?
Вот сам код:

<Window x:Class="launcher.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:launcher"
        mc:Ignorable="d"
        Title="MainWindow" Height="500" Width="850"
        WindowStyle="None"
        AllowsTransparency="True"
        ResizeMode="NoResize"
        WindowStartupLocation="CenterScreen">
    <Grid HorizontalAlignment="Stretch" Height="500" VerticalAlignment="Top" Width="850">
        <Grid.Background>
            <ImageBrush ImageSource="background.png" AlignmentX="Center"></ImageBrush>
        </Grid.Background>
    </Grid>
</Window>


Что получается по итогу...
введите сюда описание изображения


Ответы (1 шт):

Автор решения: byte_

Решение: Stretch="None" в параметрах картинки.

→ Ссылка