在绑定wpf组合框时,在使用ItemsSource之前,项集合必须为空

时间:2016-10-03 12:02:45

标签: c# wpf

将组合框与列表绑定时,得到问题"在使用ItemsSource之前,Items集合必须为空。"我们怎么解决这个问题?

我的代码在

下面
<ComboBox x:Name="ComboBoxUsers" DisplayMemberPath="Name" SelectedValuePath="Id" ItemsSource="{Binding}" VerticalContentAlignment="Center" HorizontalAlignment="Left" Margin="113,14,0,0" VerticalAlignment="Top" Height="32"  Width="280" FontSize="14" Cursor="Hand" SelectionChanged="ComboBoxUsers_SelectionChanged">
            <ComboBox.Background>
                <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
                    <GradientStop Color="#FFF3F3F3" Offset="0"/>
                    <GradientStop Color="#FFEBEBEB" Offset="0.31"/>
                    <GradientStop Color="#FF6C6464" Offset="1"/>
                </LinearGradientBrush>
            </ComboBox.Background>
            <Popup AllowsTransparency="false" Focusable="false"/>
        </ComboBox>

我的用户类是

public class User
{
    public int Id { get; set; }
    public string Name { get; set; }
}

致电

Users = GetUsers();
        ComboBoxUsers.ItemsSource = Users ;

发生错误,我该如何解决?

1 个答案:

答案 0 :(得分:2)

移动或删除<popup>元素。

现在,默认情况下,它会组成您的Items集合。