DataGridViewColumn column = new DataGridViewColumn();column.HeaderText = "列名";//设置列名属性,当然还有其它很多属性DataGridView1.columns.add(column);