There is
public object[]? obj;
public ObservableCollection<object>datatablew { get; set; }
public diztablew(object grps)
{
datatablew = new ObservableCollection<object>() { grps };
obj = new object[3];
obj[0] = "1111";
datatablew.Add(obj);
}
how to tie
<DataGridTextColumn Header="id" Binding="{Binding Path=?????}"/>
is it possible ? class grps not available at this location .
I solved part of the problem like this