gpt4 book ai didi

.net - 将字体动态设置为 DatagridView 的单元格

转载 作者:行者123 更新时间:2023-12-01 15:15:57 26 4
gpt4 key购买 nike

在我的 winform 中使用 DataGgridView在某些情况下,我想为某些列设置特殊字体,我使用以下代码实现了这一点

this.grvInvoice.Columns["mat_Name"].DefaultCellStyle.Font = new Font("Verdana", 14);

但我只想为某个单元格设置某些字体和大小。我试试下面的代码

grvRequest.Rows[i].Cells["item"].Style.Font = new Font("Verdana", 14);

但它不起作用。是否可以 为 DataGridView 的单元格动态设置特定的字体和大小

最佳答案

您可以使用以下代码为每个单元格设置单独的样式:

DataGridViewCell cell=null;
// Get a cell you need here
cell.Style = new DataGridViewCellStyle()
{
BackColor = Color.White,
Font = new Font("Tahoma", 8F),
ForeColor = SystemColors.WindowText,
SelectionBackColor = Color.Red,
SelectionForeColor = SystemColors.HighlightText
};

但是,如果您看不到任何结果,这可能意味着您在父级别设置了一些样式并且该样式覆盖了您的样式。

有关详细信息,请查看本文的 样式继承 段:Cell Styles in the Windows Forms DataGridView Control .

关于.net - 将字体动态设置为 DatagridView 的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8339186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com