DataGridView绑定数据源时,会自动显示未绑定的列,怎么让其不显示未绑定的列呢?
设置AutoGenerateColumns属性即可
this.dataGridView1.AutoGenerateColumns = false;
ok