我在让 WPF 组合框显示下拉部分时遇到问题。组合框呈现,但是当我单击向下箭头时,组合框中的值不显示。我可以使用箭头在不同的值之间导航。
我的 XAML 看起来像这样:
<ComboBox Text="Is not open" Margin="14,14,0,0" Height="20" Width="150" IsEditable="True" IsEnabled="True">
<ComboBoxItem Name="cbi1">Item1</ComboBoxItem>
<ComboBoxItem Name="cbi2">Item2</ComboBoxItem>
<ComboBoxItem Name="cbi3">Item3</ComboBoxItem>
</ComboBox>
我错过了一个设置吗?