0
我有一個組合框,我想動態地將MaxDropDownHeight屬性綁定到第二行高度。WPF將MaxDropDownHeight屬性綁定到網格行高度
這裏的XAML:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="6*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<ComboBox MaxDropDownHeight="">
</ComboBox>
</Grid>
我怎麼能這樣做?