我正在从字符串数组中向组合框添加项目,但我只能看到一个项目。请帮忙: XAML:
<ComboBox x:Name="cboHostels" Margin="12,15,44,5" Grid.Row="3" VerticalAlignment="Center" Height="30"/>
C#:
public Hostel()
{
InitializeComponent();
cboHostels.ItemsSource = new string[] {"HOSTEL1", "HOSTEL2"};
}
在运行时,组合框仅显示第一个项目。我需要做什么?