0

Visual Studio 2012、WPF C# Windows アプリケーション。XAML:

<Window x:Class="Edge.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <Grid Background="Blue">
        <Image Source="Images/House.png"  
           HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
           Stretch="Fill" Margin="3"
           />
    </Grid>
</Window>

私が望むように、画像はウィンドウ全体に引き伸ばされません.1/4ウィンドウ領域にのみ表示されます. Stretch="Fill"画像をウィンドウ全体に引き伸ばす必要があると思います。なにが問題ですか?

ここに画像の説明を入力

4

1 に答える 1