当我使用下面的代码 dg.ForeColor = System.Drawing.Color.Black; 时,如何使前景色的字体变粗 我如何使它变得粗体?
谢谢,普佳
您可以使用此代码(也可以在 Designer.cs 中找到):
var dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle1;
就像是
dataGridView1.Font = new Font("Arial",8.5F , FontStyle.Bold);