Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C#/WPF: DataGrid - Last Row / Footer Row possible?

Does anyone how I can add a fixed last row / footer row to the WPF Toolkit DataGrid? I'd like to display a "summary" at the bottom of all Column Values.

Thank you.

Cheers

like image 399
Joseph jun. Melettukunnel Avatar asked Sep 24 '09 09:09

Joseph jun. Melettukunnel


1 Answers

Another possibility would be to have a second DataGrid below your first grid, a summary DataGrid if you will.

You could perform data bindings to set the column sizings (if they are dynamic) and it would align nicely if placed in a grid layout in XAML.

Hope this gives you some ideas.

like image 159
Alastair Pitts Avatar answered Oct 26 '22 08:10

Alastair Pitts