“System.Windows.Controls.UIElementCollection”的子级;不能为空。预期从 UIElement 派生的对象
我遇到了这个异常,不知道该怎么办。 我正在使用我在网上找到的 TreeListView
:
<tv:TreeListView x:Name="listView" ItemsSource="{Binding TreeRoot}" Margin="5" Width="640" Height="732">
</tv:TreeListView>
有人遇到过这个异常吗?
I got this exception and don't know what to do with it.
I'm using a TreeListView
that I found on the net:
<tv:TreeListView x:Name="listView" ItemsSource="{Binding TreeRoot}" Margin="5" Width="640" Height="732">
</tv:TreeListView>
Has anyone had this exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑
DataContext
中的TreeRoot
集合包含空项。I suspect the
TreeRoot
collection in yourDataContext
contains null items.