I have an an array called:
string[,] TableData;
Can I link its content with a DataGrid control using binding?
If possible, I would
The easiest way should be to use the build in WPF Datagrid and project your Array to a View class which will be bound.
Do you want your users to be able to add rows? If yes binding to an array is not possible because you can't add rows.
If you have any number of columns you should be able to project your array to a dynamic object and set the AutoGenerateColumns property of the datagrid to true. Do your columns have names?