拉伸网格到窗口大小

时间:2011-09-22 21:41:26

标签: c# wpf grid size stretch

我刚开始用一个基本的空项目学习C#WPF,我想创建一个带有背景图像的网格,它正好在窗口上延伸。

现在的方式,网格延伸,但不是我想要的方式。例如我的背景图像是1000x1000px,我的窗口大小是1700x1200px,所以网格延伸到1200x1200px(它保持图像的宽高比。我不想要这个,我希望它只是伸展整个窗口。

这是我的代码:

<Window x:Class="Backgammon.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="auto" Width="auto">
<Grid VerticalAlignment="Stretch">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="auto" MinWidth="510" />
    </Grid.ColumnDefinitions>
    <Image Source="C:\Users\Edy\Pictures\cool-wallpapers1.jpg" Stretch="UniformToFill" HorizontalAlignment="Left"></Image>
    <Button Height="33" HorizontalAlignment="Right" Margin="0,0,12,12" Name="button1" VerticalAlignment="Bottom" Width="145" Click="button1_Click" ClipToBounds="False">Connect</Button>
    <ListBox Margin="12,12,0,149" Name="listBox1" HorizontalAlignment="Left" Width="225" />
</Grid>

任何帮助都会很棒,谢谢。

2 个答案:

答案 0 :(得分:15)

尝试

<Grid Width="{Binding ActualWidth, 
              RelativeSource = {RelativeSource AncestorType = {x:Type Window}}}" 
      Height="{Binding ActualHeight, 
              RelativeSource ={RelativeSource AncestorType = {x:Type Window}}}">

答案 1 :(得分:1)

弄清楚了。 <Grid.ColumnDefinitions>让我感到困惑。删除了它并且它有效:)