WpfDataGridFilter 0.0.3

dotnet add package WpfDataGridFilter --version 0.0.3
                    
NuGet\Install-Package WpfDataGridFilter -Version 0.0.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WpfDataGridFilter" Version="0.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WpfDataGridFilter" Version="0.0.3" />
                    
Directory.Packages.props
<PackageReference Include="WpfDataGridFilter" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add WpfDataGridFilter --version 0.0.3
                    
#r "nuget: WpfDataGridFilter, 0.0.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=WpfDataGridFilter&version=0.0.3
                    
Install WpfDataGridFilter as a Cake Addin
#tool nuget:?package=WpfDataGridFilter&version=0.0.3
                    
Install WpfDataGridFilter as a Cake Tool

WpfDataGridFilter

"I just want to filter some data in a DataGrid, why is all this so complicated?"... said everyone using a WPF DataGrid.

This library makes it possible to add filters for each column of a DataGrid, and use them to provide Filtering.

What's included

When a Filter has been added to the a DataGrid column it looks like this:

Filter Header Overview

By clicking on the Filter Symbol, a Popup for the given Filter Type is shown:

Filter Popup Opened

You can use several Operators for Filtering the Data. It depends on the Filter Type:

Filter Popup Opened With Filter Operators

Using it:

You just need to add a FilterableDataGridColumnHeader as the DataGridColumn.Header for the Properties we want to Filter:

<DataGrid ItemsSource="{Binding ViewModel.People}" AutoGenerateColumns="False">
    <DataGrid.Columns>
        <DataGridTextColumn Binding="{Binding PersonID}">
            <DataGridTextColumn.Header>
                <wpfdatagridfilter:FilterableDataGridColumnHeader FilterState="{Binding FilterState}" HeaderText="PersonID" PropertyName="PersonID" Height="30" FilterType="IntNumericFilter"></wpfdatagridfilter:FilterableDataGridColumnHeader>
            </DataGridTextColumn.Header>
        </DataGridTextColumn>
        <DataGridTextColumn Binding="{Binding FullName}">
            <DataGridTextColumn.Header>
                <wpfdatagridfilter:FilterableDataGridColumnHeader FilterState="{Binding FilterState}" HeaderText="FullName" PropertyName="FullName" Height="30" FilterType="StringFilter"></wpfdatagridfilter:FilterableDataGridColumnHeader>
            </DataGridTextColumn.Header>
        </DataGridTextColumn>
    </DataGrid.Columns>
</DataGrid>

We can then subscribe to changes on a FilterState like this:

using System.Windows;
using WpfDataGridFilter.Filters;

namespace WpfDataGridFilter.Example;

/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public FilterState FilterState { get; set; }

    public MainWindowViewModel ViewModel { get; set; }

    public MainWindow()
    {
        InitializeComponent();
        
        ViewModel = new MainWindowViewModel();

        FilterState = new FilterState();

        FilterState.FilterStateChanged += (s, e) =>
        {
            ViewModel.Filter(e.FilterState);
        };

        DataContext = this;
    }
}

And here is how to use the FilterState in a ViewModel:

using CommunityToolkit.Mvvm.ComponentModel;
using System.Collections.ObjectModel;
using WpfDataGridFilter.DynamicLinq;
using WpfDataGridFilter.Example.Models;
using WpfDataGridFilter.Filters;
using System.Linq.Dynamic.Core;
using WpfDataGridFilter.Filters.Models;

namespace WpfDataGridFilter.Example;

public partial class MainWindowViewModel : ObservableObject
{
    [ObservableProperty]
    private ObservableCollection<Person> _people;

    public MainWindowViewModel()
    {
        People = new ObservableCollection<Person>(MockData.People);
    }

    public void Filter(FilterState filterState)
    {
        List<FilterDescriptor> filters = filterState.Filters.Values.ToList();

        InternalFilter(filters);
    }

    public void InternalFilter(List<FilterDescriptor> filters)
    {
        try
        {
            string dynamicLinqQuery = DynamicLinqConverter.Translate(filters);

            IQueryable<Person> query = MockData.People.AsQueryable();

            if (!string.IsNullOrWhiteSpace(dynamicLinqQuery))
            {
                query = query.Where(dynamicLinqQuery);
            }

            People = new ObservableCollection<Person>(query.ToList());
        }
        catch (Exception e)
        {
            // Some great Pokemon Exception Handling here ...
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on WpfDataGridFilter:

Package Downloads
WpfDataGridFilter.DynamicLinq

An OData Converter for the WpfDataGridFilter Filters

WpfDataGridFilter.OData

An OData Converter for the WpfDataGridFilter Filters

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.3 249 3/23/2025
0.0.2 246 3/23/2025
0.0.1 246 3/23/2025