user10705768
user10705768

Reputation:

WPF DataGrid: filter in header like in excel

Is there a simple and free control which I can integrate in my XML code for an easy filter-posibility like in excel?

enter image description here

I found some controls on the web but the companies want to have like 2000$ a year for using their solution (telerik, syncfusion, etc.)... Also the free version of xceed toolkit (controls-package) doesnt support it.

Otherwise I would implement a dozen of textboxes above for filtering each column.. :-/

Upvotes: 1

Views: 6410

Answers (1)

BalintPogatsa
BalintPogatsa

Reputation: 129

There is a similar filter implementation on code project.

It is using the CollectionViewSource filtering of WPF and displays a filter input field based on the type of the bound value.

Edit - Link corrected

Upvotes: 1

Related Questions