我遇到了一个问题:如果列标题的名称中有一个点,则它不会显示该列中单元格的值。
如何在不更改列名称的情况下解决此问题?
var ds = new DataSet();
var dataPylons = new DataTable();
ds.Tables.Add(dataPylons);
foreach (var i in pylonItem)
{
cl = new DataColumn(i.Code + "\n" + i.Sheme, typeof(string));
dataPylons.Columns.Add(cl);
}
// In the cycle fill cell
dataPylons.Rows[i][j] =...;
...
DataGridPylons.ItemsSource = ds.Tables[0].DefaultView;
错误示例: https ://docs.google.com/file/d/0B3wJRn2hp50hTm9uX2FkRUg1dTQ/edit?usp=sharing