更改 DataGrid 单元格的字体?
我的简单目标是使特定单元格内的字体变为粗体。我无法设置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我们谈论的是 WinForms,你可以这样做...
如果我们谈论的是 Web 应用程序,你可以这样做...
但理想情况下,在 Web 应用程序中,这将通过 CSS 处理具体选择器...
If we're talking about WinForms, you can do it like this...
If we're talking about a web application, you can do it like this...
But ideally in a web app this would be handled via CSS with a specific selector...