lastunicorn / ConsoleTools

A set of tools and "controls" for the .net Console.
GNU General Public License v3.0
73 stars 5 forks source link

DataGrid - Add `Footer` property on the `DataGrid` #88

Closed lastunicorn closed 2 months ago

lastunicorn commented 2 months ago

As a user of the DataGrid, I want to have a Footer property directly on the DataGrid (like the Title) so that I can easily set a footer text instead of accessing it through the FooterRow and FooterCell.

Current approach:

dataGrid.FooterRow.FooterCell.Content = "Footer text";

Desired approach:

dataGrid.Footer = "Footer text";