我有这个代码:
<ComboBox Name="cbxWorkers" HorizontalContentAlignment="Right"
ItemsSource="{Binding Workers}">
<ComboBoxItem IsSelected="True" Content="Select" />
<ComboBox.ItemTemplate>
<DataTemplate>
<ComboBoxItem Content="{Binding LastName}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
除第二行外,一切正常。它给了我一个运行时异常:在使用 ItemsSource 之前,Items 集合必须为空。
我该如何处理,所以我将获得所有的工人,以及项目 - “选择”作为组合框的第一项?
非常感谢 :)