如何在XAML中绑定listview的项目数

时间:2013-09-06 13:08:26

标签: xaml binding

我将计数绑定到文本块时遇到问题。

我有一个listview,它的项目绑定到Users对象属性。 我想得到所有绑定项目的数量。

这是我的ListView:

<ListView ItemsSource="{Binding Users}" x:Name="lvUsers">
    <ListView.ItemTemplate>
        <DataTemplate>
            <ListViewItem IsHitTestVisible="False">
                <StackPanel>
                    <facebookControls:ProfilePicture Height="74" Width="74" ProfileId="{Binding FacebookId}" />
                    <TextBlock Text="{Binding UserName}" FontSize="18" HorizontalAlignment="Center" />
                </StackPanel>
            </ListViewItem>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

这是我的TextBlock:

<TextBlock Text="{Binding ElementName=lvUsers, Path=Items.Count, Mode=OneWay}" />

我做错了什么?

我知道如果我的ListView没有模板,只有ListViewItems,它会起作用,但我需要它就像那样。

1 个答案:

答案 0 :(得分:3)

覆盖此ListView的模板。 下面的示例基本上创建了一种样式,它覆盖了控件模板,使常规ListView项(ItemsPresenter)包含在StackPanel中,以便TextBlock计数或者可以在底部添加任何其他内容。

<ListView ItemsSource="{Binding Users}">
        <ListView.Style>
            <Style TargetType="{x:Type ListView}">
            <Style.Setters>
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate>
                            <Border BorderThickness="1" BorderBrush="LightGray">
                                <StackPanel>
                                    <ScrollViewer>
                                        <ItemsPresenter />
                                    </ScrollViewer>
                                    <TextBlock Margin="0,4" FontWeight="Bold">
                                        <Run Text="Count: "/>
                                        <Run Text="{Binding RelativeSource={RelativeSource AncestorType={x:Type ListView}}, Path=Items.Count, Mode=OneWay}"/>
                                    </TextBlock>
                                </StackPanel>
                            </Border>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>                    
            </Style.Setters>
        </Style>
        </ListView.Style>
        <ListView.ItemTemplate>
            <DataTemplate>
                <ListViewItem IsHitTestVisible="False">
                    <StackPanel>
                        <facebookControls:ProfilePicture Height="74" Width="74" ProfileId="{Binding FacebookId}" />
                        <TextBlock Text="{Binding UserName}" FontSize="18" HorizontalAlignment="Center" />
                    </StackPanel>
                </ListViewItem>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>