检查是否是 ObservableCollection,如果是,则显示替代的 xaml!
我有一个 ListView
,它绑定到 ObservableCollection
。此外,我列出了 ObservableCollection 中的所有项目。现在,有没有一种好方法来检查 ObservableCollection 是否为空,并显示替代的 xaml?
I have a ListView
with a binding to a ObservableCollection
. Further I am listing out all items in the ObservableCollection
. Now, Is there a good way to check if the ObservableCollection
is empty, and the display an alternative xaml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ListView 的 HasItems 依赖属性。使用触发器,当属性为 false 时,您可以更改 ControlTemplate。这是一个例子:
You can use the HasItems dependency property of the ListView. With a trigger, when the property is false, you can change the ControlTemplate. Here is as example: