绑定到 XAML 中的 ICollectionView.Count 属性

发布于 2024-07-28 06:15:23 字数 546 浏览 5 评论 0原文

我正在尝试将文本框绑定到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇色安年 2024-08-04 06:19:50

您不需要“视图”。 在路径中。 它应该只是:

Path="Count"

You don't need the "View." in the path. it should just be:

Path="Count"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文