C# DataGridView cell(單一儲存格) 字體 顏色

C# DataGridView cell(單一儲存格) 字體 顏色

C# DataGridView cell(單一儲存格) 字體 顏色


資料來源: https://social.msdn.microsoft.com/Forums/zh-TW/e63b1ba8-0dd2-4fb2-8478-1a286ec568e0/datagridview?forum=232


01.DataGridView 如何個別設定Cell的背景顏色

private void button3_Click(object sender, EventArgs e)
{
    dataGridView1.Rows[0].Cells[1].Style.BackColor = Color.Red;
    dataGridView1.Rows[0].Cells[1].Style.ForeColor = Color.Yellow;
}


02.整體DataGridView字型大小設定

dataGridView1.DefaultCellStyle.Font = new Font("Tahoma", 15);

One thought on “C# DataGridView cell(單一儲存格) 字體 顏色

  1. DataGridView 欄位(CELL) 字型 大小 顏色
    字體/文字 顏色 大小 字型 行距(欄寬/欄高) 調整設定

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *