対象のDataGridView
のプロパティColumnHeadersDefaultCellStyle
をいじってください。
デザイナーからフォントを変更することができますので、太字を指定すればOKです。


デザイナーではなくコードで、ということでしたら、こんな感じでしょうか。
(デザイナーが自動生成したコードの抜粋ですが)
vb.net
1Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
2DataGridViewCellStyle1.Font = New System.Drawing.Font("MS UI Gothic", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(128, Byte))
3Me.DataGridView1.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle1
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/08/31 04:42
2016/08/31 13:54
2016/09/01 04:33