在C#中,可以使用DataGridView控件来实现表格展示的功能。DataGridView是Windows窗体应用程序中常用的控件,可以用来展示数据、编辑数据和排序数据等操作。
使用DataGridView控件可以通过以下步骤来创建和使用表格:
DataGridView dataGridView1 = new DataGridView();
this.Controls.Add(dataGridView1);
dataGridView1.ColumnCount = 3;
dataGridView1.Columns[0].Name = "ID";
dataGridView1.Columns[1].Name = "Name";
dataGridView1.Columns[2].Name = "Age";
dataGridView1.Rows.Add("1", "Alice", "25");
dataGridView1.Rows.Add("2", "Bob", "30");
ReadOnly
属性为false:dataGridView1.ReadOnly = false;
AllowUserToOrderColumns
属性为true:dataGridView1.AllowUserToOrderColumns = true;
通过上述步骤,可以实现在C#中使用DataGridView控件来展示表格数据。