我编写了以下代码来显示一些数据,但数据网格只是显示为空,这是我的代码:
DataTable dt = new DataTable();
DataColumn col = new DataColumn("A", typeof(string));
col.MaxLength = 100;
dt.Columns.Add(col);
col = new DataColumn("B", typeof(string));
col.MaxLength = 100;
dt.Columns.Add(col);
DataRow row = dt.NewRow();
dt.Rows.Add(x,y);
dataGrid1.ItemsSource = dt.DefaultView;