使用粗体字体设置数据网格前景色

发布于 2024-10-18 01:30:03 字数 100 浏览 2 评论 0原文

当我使用下面的代码时,如何使前景色的字体变为粗体 dg.ForeColor = System.Drawing.Color.Black; 我怎样才能把它加粗?

谢谢, 普贾

How do I make the font of a forecolor bold when I use this below code
dg.ForeColor = System.Drawing.Color.Black;
How do I make it bold?

Thanks,
pooja

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不喜欢何必死缠烂打 2024-10-25 01:30:04

您可以使用以下代码(您也可以在 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;

You can use this code (which you can also find in the 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;
初吻给了烟 2024-10-25 01:30:04

像这样的东西

dataGridView1.Font = new Font("Arial",8.5F , FontStyle.Bold);

Something like

dataGridView1.Font = new Font("Arial",8.5F , FontStyle.Bold);
浮云落日 2024-10-25 01:30:04

我认为这篇文章回答了您的问题:

如何以编程方式使 gridview 中的行变为粗体和常规

欢呼:)

i think this post answers your question:

How to make row in gridview bold and regular programatically

cheers:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文