我需要将一些数据显示到表格中,但在紧凑的框架中我没有得到这样的类/对象。该表不必做任何事情,只需显示数据即可。我尝试过这样的数据网格:
DataGrid table = new DataGrid();
table.Location = new Point(13,190);
table.Size = new Size(221,100);
List<int> list = new List<int>();
list.Add(5);
list.Add(7);
list.Add(9);
table.DataSource = list;
this.Controls.Add(table);
但这会产生似乎是一个空的数据网格(一列,四行和一行有一个箭头)。