items集合必须为空

items集合必须为空

尝试显式定义datagrid列时,我一直收到此错误。如果我注释掉3个datagridtext列,它可以工作(但是我想明显地隐藏一些列)。在我的代码中,我所要做的就是为DataGridLookupsTab ..设置datacontext。不要弄乱itemsource或代码中的任何内容。知道我在这里做错了什么吗?

谢谢 !

<TabItem Header="Lookups" Height="23" VerticalAlignment="Top">
            <Grid x:Name="DataGridLookupsTab" Background="#FFE5E5E5" Margin="0,0,-1,-2" DataContext="Apps.OMS.Models.Lookups">
                <ComboBox x:Name="ComboBoxDistinctLookups" HorizontalAlignment="Left" Margin="128,14,0,0" VerticalAlignment="Top" Width="228" ItemsSource="{Binding Path=LookupTypeList}" SelectionChanged="ComboBoxDistinctLookups_SelectionChanged"/>
                <Label Content="Select Lookup Type" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" RenderTransformOrigin="1.105,4.731"/>
                <DataGrid x:Name="DataGridLookups" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top" Width="768" Height="327" ItemsSource="{Binding LookupRecords}" >
                    <DataGridTextColumn Binding="{Binding LookupType}" Header="Lookup Type" />
                    <DataGridTextColumn Binding="{Binding LookupValue}" Header="Lookup Value" />
                    <DataGridTextColumn Binding="{Binding LookupDescription}" Header="Lookup Description" />
                </DataGrid>
            </Grid>
        </TabItem>

最佳答案

实际上,问题最终是由于我缺少Datagrid.Columns标签。
谢谢

关于c# - 使用itemssource之前,items集合必须为空-datagrid wpf,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11814058/

10-09 23:43