Silverlight Combobox只显示一个项目

时间:2015-08-06 09:57:25

标签: c# silverlight combobox

我正在从字符串数组中向组合框添加项目,但我只能看到一个项目。请帮忙: 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"};
}

在运行时,组合框仅显示第一个项目。我需要做什么?

0 个答案:

没有答案