1
我有一個從數據庫(也列名)獲取所有數據並在DataGridView中顯示它的函數。DataGridView和SQL查詢名稱
問題是DataGrid也顯示列名。我如何編輯列名稱?我已經試過
dataGridView1.Columns[0].Name = "xxx";
沒有成功。
private void PriceChange_Load(object sender, EventArgs e)
{
DbCards d = new DbCards();
dataGridView1.DataSource = d.GetAllcards().Tables[0];
}
GetAllcards()
是select * from Cards
。