Hallo there!
I have some question about SfDataGrid:
I need dynamically create the table with N columns
After SfDataGrid creation i created columns:
foreach (var v in _list)
{
sfDataGrid2.Columns.Add(new GridTextColumn() {HeaderText = v.chName});
}
sfDataGrid2.ItemsSource = model1.Collection2;
After that actions i can see my new columns , but i cant understand how to fill the table?
How to add new row with N-parameters?
Can i bind my datasourse with dinamically creadted sfDataGrid?