AvaloniaUI / Avalonia.Controls.TreeDataGrid

A combined TreeView/DataGrid for Avalonia.
MIT License
266 stars 54 forks source link

Row Header or Row Index Access #197

Open sharpSteff opened 1 year ago

sharpSteff commented 1 year ago

I need to show the current row index as the first column. With DataGrid i have my RowHeader. Is there anything comparable in TreeDataGrid?

Alternativly an additional input parameter for the TextColumn getter-parameter would be great. Like: new TextColumn<Item, int>("Row", (rowItem, rowIndex) => rowIndex),