在DataGridView中更改列的字体大小
本文关键字:字体 DataGridView | 更新日期: 2023-09-27 18:04:09
我在DataGridView (WinForm应用程序)中有一列需要更改字体大小和样式。从这里的文章:http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.font.aspx中,我认为下面的代码将得到我想要的结果(我正在通过首先更改样式进行测试):
this.dataGridViewMain.Columns[3].DefaultCellStyle.Font = new Font(dataGridViewMain.DefaultCellStyle.Font, FontStyle.Italic);
但是代码没有改变任何东西。我还试图在RowPostPaint
事件处理程序上添加代码,但仍然不起作用。我知道程序使用的字体是设置在DataGridView.RowsDefaultCellStyle
属性上的,但我认为在RowPostPaint
事件中放置代码将覆盖它。下面是RowPostPaint
事件的代码:
void dataGridViewMain_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
{
this.dataGridViewMain.Columns[3].DefaultCellStyle.BackColor = Color.Gray;
foreach (DataGridViewRow row in this.dataGridViewMain.Rows)
{
int daysInShop = Convert.ToInt32(row.Cells["Days in the shop"].Value);
if (daysInShop > 4)
{
row.DefaultCellStyle.BackColor = Color.Red;
row.DefaultCellStyle.ForeColor = Color.White;
}
else if (daysInShop > 2)
{
row.DefaultCellStyle.BackColor = Color.Yellow;
}
else
{
row.DefaultCellStyle.BackColor = Color.YellowGreen;
}
row.Height = 35;
}
this.dataGridViewMain.CurrentCell = null; // no row is selected when DGV is displayed
}
任何帮助都是感激的。谢谢。
好了,这就是我的发现。在InitializeComponent()
下面有这样一行:
dataGridViewCellStyle3.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
当我注释那一行时,然后代码斜体的列是在RowPostPaint
工作良好。然后我在RowPostPaint
中添加了下面的代码,这样其他列的字体都是粗体的,尺寸更小。我仍然不太确定为什么DataGridView.Columns[colNumber].DefaultCellStyle.Font
不覆盖dataGridViewCellStyle3
int colCount = dataGridViewMain.ColumnCount;
for (int i = 0; i < colCount; i++)
{
if(i != 3)
this.dataGridViewMain.Columns[i].DefaultCellStyle.Font = new System.Drawing.Font("Verdana", 14F, FontStyle.Bold);
else
this.dataGridViewMain.Columns[3].DefaultCellStyle.Font = new System.Drawing.Font("Verdana", 25F, FontStyle.Bold);
}
字体大小是只读的,所以你会想要一个新的字体和设置yourDataGridView。Font = new Font(name,size,style)更多信息:http://msdn.microsoft.com/en-us/library/system.drawing.font.aspx
将RowsDefaultCellStyle
设置为InitializeComponent()
之后的null
我认为DataGridView
在顺序网格/列/行中采用样式。因此,如果设置了行样式,它总是覆盖任何列样式。
在我看来,这是糟糕的设计——根本不需要默认的行样式!
试试这个:
foreach (DataGridViewRow dr in dataGridView.Rows)
{
if ( // your condition here )
{
dr.Cells[0].Style.Font = new Font( dataGridView.Font, FontStyle.Underline);
dr.Cells[0].Style.ForeColor = Color.White;
dr.Cells[0].Style.BackColor = Color.Red;
}
else
{
// It also may be a good idea to restore original settings
// for the non selected rows just in case you re run this routine
dr.Cells[0].Style.BackColor = dataGridView.Columns[0].DefaultCellStyle.BackColor;
dr.Cells[0].Style.ForeColor = dataGridView.Columns[0].DefaultCellStyle.ForeColor;
dr.Cells[0].Style.Font = dataGridView.Columns[0].DefaultCellStyle.Font;
}
}