gpt4 book ai didi

WPF 错误 : "Items collection must be empty before using ItemsSource."

转载 作者:行者123 更新时间:2023-12-04 14:09:31 24 4
gpt4 key购买 nike

有谁知道为什么我一直收到“在使用 ItemsSource 之前 Items 集合必须为空”错误?

代码如下:

        <ScrollViewer Margin="8,8,8,8" Grid.Row="3" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Disabled">                  
<WrapPanel Orientation="Vertical">
<ItemsControl ItemsSource="{Binding}" x:Name="CustomerList" >>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Horizontal">
</WrapPanel>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<View:UserControlCustomerDetails>
</View:UserControlCustomerDetails>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</WrapPanel>
</ScrollViewer>

这就是我在代码隐藏中所做的:

 CustomerList.ItemsSource = _mainViewModel.CustomerCollection;

请注意,CustomerCollection 只是一个简单的列表 <Customers >.

感谢您的帮助!

干杯

最佳答案

这段代码是逐字复制的吗? >> 的末尾真的有两个右尖括号 ( <ItemsControl... )线?如果是这样,第二个右尖括号可能会被视为文本内容,并被添加到 Items 集合中。

关于WPF 错误 : "Items collection must be empty before using ItemsSource.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1087944/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com