2

当我使用下面的代码 dg.ForeColor = System.Drawing.Color.Black; 时,如何使前景色的字体变粗 我如何使它变得粗体?

谢谢,普佳

4

3 回答 3

1

您可以使用此代码(也可以在 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;
于 2011-02-16T09:39:30.273 回答
0

就像是

dataGridView1.Font = new Font("Arial",8.5F , FontStyle.Bold);
于 2011-02-16T09:37:07.183 回答
0
于 2011-02-16T09:38:03.890 回答