更改 DataGrid 单元格的字体?

发布于 2024-10-14 15:38:19 字数 211 浏览 1 评论 0原文

我的简单目标是使特定单元格内的字体变为粗体。我无法设置 Style.Font.Bold 属性,因为它是只读的,但我可以将 Style.Font 设置为新的 Font 对象。如何创建 Font 对象以使特定单元格内的文本加粗?

grid.Rows[0].Cells[0].Style.Font = new Font(???);

谢谢堆栈-O!

My simple goal is to make the font inside of a particular cell bold. I can't set the Style.Font.Bold property because it is read only, but I can set Style.Font to a new Font object. How do I create a Font object to make it possible to bold the text inside of a particular cell?

grid.Rows[0].Cells[0].Style.Font = new Font(???);

Thanks Stack-O!

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

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

发布评论

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

评论(1

⒈起吃苦の倖褔 2024-10-21 15:38:19

如果我们谈论的是 WinForms,你可以这样做...

var cell = grid.Rows[0].Cells[0];
cell.Style.Font = new Font(cell.Style.Font, FontStyle.Bold);

如果我们谈论的是 Web 应用程序,你可以这样做...

grid.Rows[0].Cells[0].Style("font-weight", "bold");

但理想情况下,在 Web 应用程序中,这将通过 CSS 处理具体选择器...

#GridView1 > tr:first-child > td:first-child {
  font-weight: bold;
}

If we're talking about WinForms, you can do it like this...

var cell = grid.Rows[0].Cells[0];
cell.Style.Font = new Font(cell.Style.Font, FontStyle.Bold);

If we're talking about a web application, you can do it like this...

grid.Rows[0].Cells[0].Style("font-weight", "bold");

But ideally in a web app this would be handled via CSS with a specific selector...

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