wpf 控件的高度和宽度基于网格的行高和行宽,由 元素绑定到它。
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="170" />
<RowDefinition Height="*" x:Name="ContentControlRow"/>
<RowDefinition Height="170"/>
</Grid.RowDefinitions>
<TabControl Grid.Row="1" x:Name="Tab" MaxHeight="{Binding ElementName=ContentControlRow, Path=ActualHeight}" Background="Red" VerticalAlignment="Stretch">
<TabItem>
</TabItem>
</TabControl>
</Grid>
在上面的代码中,它采用 MaxHeight=0。但我需要的是它应该基于 ContentControlRow 的高度,它应该根据窗口大小而变化。