我有一个组合框,我想将 MaxDropDownHeight 属性动态绑定到第二行高度。
这里的xaml:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="6*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<ComboBox MaxDropDownHeight="">
</ComboBox>
</Grid>
我怎样才能做到这一点?