Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Datagrid with filter row

Tags:

wpf

datagrid

I am looking for some datagrid for my wpf application.

I already used devexpress. I am not so happy with the devexpress control. So i wonna use now a free control. Do somebody know a free control.

Where you have a datagrid , that have on top a filter row. Does somebody some a site with multiple free wpf controls?

like image 309
Sven Avatar asked Nov 03 '11 22:11

Sven


1 Answers

It's always best to use WPF standard controls, unless you are forced not to :)

There are several solutions to your problem, but in my opinion, the best solutions are the ones which uses only styles with the standard WPF DataGrid control without inventing a new inherited DataGird type or depending on another third-party control. The followings are the best solutions I found:

  • Option 1: which I personally use: Automatic WPF Toolkit DataGrid Filtering
  • Option 2: Auto-filter for Microsoft WPF DataGrid
like image 62
Mohammed A. Fadil Avatar answered Sep 20 '22 02:09

Mohammed A. Fadil