I have an an array called:
string[,] TableData;
Can I link its content with a DataGrid control using binding?
If possible, I would
See this question: How to populate a WPF grid based on a 2-dimensional array
You can use this control called DataGrid2D (source code here). To use it just add a reference to DataGrid2DLibrary.dll, add this namespace
xmlns:dg2d="clr-namespace:DataGrid2DLibrary;assembly=DataGrid2DLibrary"
and then create a DataGrid2D and bind it to your IList, 2D array or 1D array like this
The users will be able to edit the data and changes made in the DataGrid will be reflected in the 2D Array