DataGridView繫結資料來源時,會自動顯示未繫結的列,怎麼讓其不顯示未繫結的列呢?
設定AutoGenerateColumns屬性即可
this.dataGridView1.AutoGenerateColumns = false;
ok