c# datagridview怎么做出空表格的效果,除了表头,表身例如Excel的那种空表的效果

2024-11-15 14:07:41
推荐回答(1个)
回答1:

Try:

private void Form1_Load(object sender, EventArgs e){
            this.dataGridView1.AllowUserToAddRows = false;
            for (int i = 0; i < 20; i++) // 假定需要显示20行空表格,具体根据需要修改此处
            {
    脊禅橡袭局            this.dataGridView1.Rows.Add(new DataGridViewRow());
            }

            foreach (DataGridViewRow row in this.dataGridView1.Rows)
            {
                row.HeaderCell.Value = String.Format("{0}", row.Index + 1);
   樱旁         }
 }