18

我正在使用 CollectionViewSource 过滤列表框中显示的记录。xaml 如下。

   <Window x:Class="WPFStarter.ListBoxItemsFilter.ListBoxFilterUsingCollectionViewSource"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        x:Name="userControl"
        Title="ListBoxFilterUsingCollectionViewSource" Height="300" Width="300">
        <Window.Resources>
        <CollectionViewSource Source="{Binding ElementName=userControl, Path=DataContext.Items}"
                              x:Key="cvs" Filter="CollectionViewSource_Filter"/>
        </Window.Resources>
    <StackPanel Orientation="Vertical">
        <TextBox x:Name="txtSearch" TextChanged="txtSearch_TextChanged"/>
        <TextBlock x:Name="txtSummary" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Bottom"  FontSize="8"></TextBlock>
        <ListBox ItemsSource="{Binding Source={StaticResource cvs}}" DisplayMemberPath="First"/>
    </StackPanel>

</Window>

这是我的代码隐藏(请不要介意这个代码隐藏,在实际应用程序中,我在这个场景中使用了最好的 MVVM)。

 public partial class ListBoxFilterUsingCollectionViewSource : Window
    {
        private string _text="";
        private readonly CollectionViewSource _viewSource;

        public ListBoxFilterUsingCollectionViewSource()
        {
            InitializeComponent();
            _viewSource = this.FindResource("cvs") as CollectionViewSource;
        }

        private void CollectionViewSource_Filter(object sender, FilterEventArgs e)
        {
            var character = e.Item as Character;
            e.Accepted = character != null && character.First.ToLower().Contains(_text.ToLower());
        }

        private void txtSearch_TextChanged(object sender, TextChangedEventArgs e)
        {
            _text = txtSearch.Text;
            _viewSource.View.Refresh();

            SetSummary();
        }

        private void SetSummary()
        {                
            var initialCount = 10; //HELP????
            var filteredCount = 10; //HELP????
            txtSummary.Text = String.Format("{0} of {1}", filteredCount, initialCount);
        }
    }

问题: 我在编写“SetSummary”方法时需要帮助,其中我可以从 CollectionViewSource 对象中获取“initialCount”和“filteredCount”。

感谢您的关注。

4

6 回答 6

46

您也可以_viewSource.View.Cast<object>().Count()对过滤后的列表和_viewSource.View.SourceCollection.Cast<object>().Count()原始列表进行操作。

于 2011-01-05T08:31:52.053 回答
12

我认为更好的解决方案是,像往常一样,Linq!

_viewSource.View.Cast<[your_type]>().Count();

...或者...

_viewSource.View.Cast<object>().Count();

...如果您在运行时不知道项目的类型!

于 2012-07-09T15:13:54.477 回答
7

源集合和集合视图都实现了 IEnumerable,因此您始终可以遍历它们并计算其中有多少。但我只建议您在无法访问用作源的实际集合时这样做。

private void SetSummary() 
{
    int initialCount = 0;
    foreach(var item in _viewSource.View.SourceCollection)
    {
        initialCount++;
    }

    int filteredCount = 0;
    foreach (var item in _viewSource.View)
    {
        filteredCount++;
    }
}
于 2010-08-17T21:13:49.533 回答
4

如果你在做 MVVM,你可以让你的 VM 创建一个集合视图,而不是由CollectionViewSource. 然后,您可以控制创建的 CVS 类型,因此您可以创建一个ListCollectionViewSource具有Count属性的 . 这实际上取决于您要过滤的数据的属性。

于 2010-08-17T09:57:03.180 回答
2
var count = DataGrid.ItemsSource.OfType<object>().Count();
于 2016-12-11T20:52:14.213 回答
0
public static int Count(this ICollectionView view)
    {
        var index = 0;
        foreach (var unused in view)
        {
            index++;
        }
        return index;
    }
于 2018-05-20T19:26:09.153 回答