0

我遇到了一个问题:如果列标题的名称中有一个点,则它不会显示该列中单元格的值。

如何在不更改列名称的情况下解决此问题?

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

4

1 回答 1

0

Datagrid 列遵循与 SQL 列命名标准相同的标准,如下所示:http: //msdn.microsoft.com/en-us/library/ms175874.aspx

你需要坚持这一点。

于 2013-04-23T00:17:40.977 回答