WPF布局问题

时间:2011-05-30 09:16:53

标签: wpf layout

我实施一个相当简单的布局要求有点困难。我想在图像下面显示一个图像按钮。图像应该显示为一个整体 - 所以如果有必要,它应该按比例缩小,但不应该按比例放大。

这就是我想要的:

mockup

看起来很简单,但我无法弄清楚这是否在XAML中是可能的。显然,Stackpanel无法正常工作,DockPanel也无效,我也看不到Grid的解决方案。

这是我尝试使用DockPanel:

<DockPanel>
    <Button DockPanel.Dock="Bottom">Button</Button>
    <Viewbox 
        Stretch="Uniform"
        MaxWidth="{Binding ElementName=bigImage, Path=ActualWidth}" 
        MaxHeight="{Binding ElementName=bigImage, Path=ActualHeight}">
        <Image x:Name="bigImage"/>
    </Viewbox>
</DockPanel>

显然,图像视图框将始终填充剩余空间,因此按钮将始终位于整个容器的底部,而不是图像的底部。

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

这应该做你想要的:

  <Grid>  
    <DockPanel HorizontalAlignment="Center" VerticalAlignment="Center">
        <Button DockPanel.Dock="Bottom">Button</Button>
        <Image x:Name="bigImage" StretchDirection="DownOnly" />
    </DockPanel>
  </Grid>

答案 1 :(得分:1)

<Grid>
   <Grid.RowDefinitions>
     <RowDefinition Height="*"/>
     <RowDefinition Height="Auto"/>
   </Grid.RowDefinitions>
   <Image Source="photo.PNG" Stretch="Uniform" StretchDirection="DownOnly"/>
   <Button Content="Button" Grid.Row="1" HorizontalAlignment="Left"/>
</Grid>

您只能使用单个网格。将StretchDirection设置为DownOnly时,无需指定最大大小。