如何从 XAML 获取 ObservableCollection 中的项目数量?

发布于 2024-07-24 04:55:12 字数 583 浏览 6 评论 0原文

我正在显示从 ComboBox 中的 ViewModel ObservableCollectoin 属性获得的所有客户,如下所示:

<ComboBox 
    ItemsSource="{Binding Customers}"
    ItemTemplate="{StaticResource CustomerComboBoxTemplate}"
    Margin="20"
    HorizontalAlignment="Left"
    SelectedItem="{Binding SelectedCustomer, Mode=TwoWay}"/>

Is there a way to get the number of items in the ObservableCollection without create another ViewModel property,eg some像这样:

伪代码:

<TextBlock Text="{Binding Customers.Count()}"/>

I'm displaying all of my customers which I get from a ViewModel ObservableCollectoin property within a ComboBox like this:

<ComboBox 
    ItemsSource="{Binding Customers}"
    ItemTemplate="{StaticResource CustomerComboBoxTemplate}"
    Margin="20"
    HorizontalAlignment="Left"
    SelectedItem="{Binding SelectedCustomer, Mode=TwoWay}"/>

Is there a way to get the number of items in the ObservableCollection without creating another ViewModel property, e.g. something like this:

PSEUDO-CODE:

<TextBlock Text="{Binding Customers.Count()}"/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情徒 2024-07-31 04:55:12

ObservableCollection 类型公开了一个可供您使用的 Count 属性。
我不知道 ObservableCollection 是否引发 PropertyChanged 事件以便通知 UI 有关此属性的更新。

The ObservableCollection type exposes a Count Property which you can use.
I don't know if ObservableCollection raises the PropertyChanged event in order to inform the UI about updates to this property though.

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