绑定到 XAML 中的 ICollectionView.Count 属性
我正在尝试将文本框绑定到 XAML 中经过筛选的集合视图的计数。 它不会产生任何错误,但也不会产生任何输出。 有谁知道如何做到这一点?
以下是我的 XAML 的一些片段:
<Window.Resources>
<CollectionViewSource x:Key="MyView" Source="{Binding MyBinding}" Filter="MyFilter" />
</Window.Resources>
...
<TextBlock>
<TextBlock.Text>
<Binding Source="{StaticResource MyView}" Path="View.Count"
StringFormat="{}Count: {0:D}" />
</TextBlock.Text>
</TextBlock>
基本上,我试图显示列表中已过滤项目的计数。
I'm trying to bind a text box to the count of a filtered, collection view in XAML. It doesn't generate any errors but it also doesn't produce any output. Does anyone know how to do this?
Here's are some snippets of my XAML:
<Window.Resources>
<CollectionViewSource x:Key="MyView" Source="{Binding MyBinding}" Filter="MyFilter" />
</Window.Resources>
...
<TextBlock>
<TextBlock.Text>
<Binding Source="{StaticResource MyView}" Path="View.Count"
StringFormat="{}Count: {0:D}" />
</TextBlock.Text>
</TextBlock>
Basically, I'm trying to display the count of filtered items in the List.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要“视图”。 在路径中。 它应该只是:
You don't need the "View." in the path. it should just be: