我想改變datagridview行中headercell的背景顏色。那麼我怎麼能在代碼C#中做到這一點呢?如何在使用C#的代碼中更改datagridview headercell的背景顏色?
另外,如何更改名稱爲headercell值的文本的字體屬性,如headercell.value
?
我想改變datagridview行中headercell的背景顏色。那麼我怎麼能在代碼C#中做到這一點呢?如何在使用C#的代碼中更改datagridview headercell的背景顏色?
另外,如何更改名稱爲headercell值的文本的字體屬性,如headercell.value
?
我已經找到了如何利用改變背景色:
dataGridView1.Rows[index].HeaderCell.Style.BackColor = System.Drawing.Color.Red;
我還是不知道答案,我的第二個問題。
要更改指定標題單元格的字體屬性,你可以嘗試:
dataGridView1.Columns[index].HeaderCell.Style.Font = new Font("Arial", 24, , FontStyle.Bold);
你可以試試這個
dataGridView1.EnableHeadersVisualStyles = false;
dataGridView1.Columns[index].HeaderCell.Style.Font = new Font("Arial", 24, , FontStyle.Bold);
您可以在屬性窗口中做到這一點。將EnableHeadersVisualStyles設置爲false,然後對ColumnHeadersDefaultCellStyle中的字體,單元格顏色,對齊方式等進行更改。