0

感觉应该有更优雅的方式来编写这段代码?

 try
 {
    if (InfrastructureComboBoxT32.Items[0] == null){}
 }
 catch
 {
    // Load data into the combobox
 }

使用 Silverlight5

4

2 回答 2

0

那这个呢:

items != null && items.Count > 0
于 2012-12-11T11:27:10.080 回答
0

ComboBox控件公开了一个HasItems属性。然后:

if(!InfrastructureComboBoxT32.HasItems)
{
    // Load data into the combobox
}
于 2012-12-11T14:40:23.823 回答