C#中,如何datagridview 中某一行的字体样式、颜色?

例如我有10行内容,我修改第二行的字体为加粗,求解。。。
我是在加载datagridview的容器时 就给datagridview就赋值了
然后根据一定的条件,设置某一行的字体
CellFormating可以么 =.=

-------------
补充下2楼
你那些属性都是只读的
=.=

各位大大们,你们能不能先测试下代码再回答啊 0.0

不好意思啊。。写的太快了。。。呵呵 。这次肯定行。。。
所有行:
dataGridView1.RowsDefaultCellStyle.Font = new Font("宋体", 9, FontStyle.Strikeout);
dataGridView1.RowsDefaultCellStyle.ForeColor = Color.Blue;
dataGridView1.RowsDefaultCellStyle.BackColor = Color.Red;
选中行
dataGridView1.SelectedRows[0].DefaultCellStyle.Font = new Font("宋体", 9, FontStyle.Strikeout);
dataGridView1.SelectedRows[0].DefaultCellStyle.ForeColor = Color.Blue;
dataGridView1.SelectedRows[0].DefaultCellStyle.BackColor = Color.Red;
看看是不是你要的效果。。。
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-01-20
在DataGridView事件中有个CellFormating事件里面写代码可以实现,利用参数E。
if (e.ColumnIndex >= 3 && e.ColumnIndex <= ds.Tables["汇总表"].Columns.Count - 2)
{
if (double.Parse(e.Value.ToString()) < 60)
{
e.CellStyle.ForeColor = Color.Red;
e.CellStyle.Font = new Font("宋体", 12, FontStyle.Underline | FontStyle.Bold);
}
if (double.Parse(e.Value.ToString()) >= 90 && double.Parse(e.Value.ToString()) <= 100)
{
e.CellStyle.Font = new Font("宋体", 12, FontStyle.Underline | FontStyle.Bold);
e.CellStyle.ForeColor = Color.Blue;
}
}
给个邮箱地址我发给你看看
郁闷,那你自己试试吧!可能换是不行
第2个回答  2011-01-20
this.DgvItemInfo.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.Green; //背景色
this.DgvItemInfo.Rows[i].DefaultCellStyle.ForeColor = Color.Red; //字体颜色
第3个回答  2011-01-20
手上没有C#,我估计应该这样做。

循环Grid的所有Row,找到满足你需求的Row,调用它的BackgroundColor属性吧。

C#中,如何datagridview 中某一行的字体样式、颜色?
所有行:dataGridView1.RowsDefaultCellStyle.Font = new Font("宋体", 9, FontStyle.Strikeout);dataGridView1.RowsDefaultCellStyle.ForeColor = Color.Blue;dataGridView1.RowsDefaultCellStyle.BackColor = Color.Red;选中行 dataGridView1.SelectedRows[0].DefaultCellStyle.Font = new Font("宋体", 9,...

C#中,如何datagridview 中某一行的字体样式、颜色?
选中行 dataGridView1.SelectedRows[0].DefaultCellStyle.Font = new Font("宋体", 9, FontStyle.Strikeout);dataGridView1.SelectedRows[0].DefaultCellStyle.ForeColor = Color.Blue;dataGridView1.SelectedRows[0].DefaultCellStyle.BackColor = Color.Red;看看是不是你要的效果。。。

c# 如何改变datagridview里的字体颜色
1、前台方法 把forecolor设置为想要的颜色即可,例子中设置为红色。 1 <datagridview ForeColor="Red" \/> 2、后台方法 这里需要先对datagridview命名。把forecolor设置为想要的颜色即可,例子中设置为红色。 1 2 datagridview datagridview1=new datagridview(); dataGridView1.ForeColor = Color.Red; 本回答由电脑...

C#datagridview怎么设置行标题的文字
一、修改行名 1、dataGridView1.Rows[0].HeaderCell.Value = "编号"。2、dataGridView1.Rows[1].HeaderCell.Value = "号牌号码"。3、Rows数组从0开始。4、0代表第一行。二、修改列名1、dataGridView1.Columns[0].HeaderCell.Value = "编号"。2、dataGridView1.Columns[1].HeaderCell.Value =...

C# datagridview不能选中某行 或 选中后颜色不变成蓝色
1、selectionMode 属性中的fullRowselect选中就可以选中一行了。2、RowTemplate属性的加号点开,你会看到DefualtCellStyle属性,然后打开它,修改其中的相应属性就可以了。

C#Winform datagridview控件,想让像是的内容奇数行背景颜色为灰色怎么...
(i%2 ,= 0){\/\/如果是奇数行\/\/设置此行的背景颜色为灰色dataGridView1.Rows[i].DefaultCellStyle.BackColor = Color.Gray;}}}private void Form1_Load(object sender, EventArgs e){DataTable dataTable = new DataTable();dataTable.Columns.Add("编号");dataTable.Columns.Add(...

C#中DataGridView怎么隐藏行标题列
属性 fullRowSelect 标题文字 需要去 rowspan属性里 打开 里面可以具体设置 就先你设置下面的单元格为浅蓝Se一样的界面

C# 鼠标点击datagridview的某一单元格让单元格所在行都变色
DataGridView属性中有个SelectMode之类的属性,可以设定是选择单元格还是选择行。在DataGirdView属性中还有DefaultCellStyle之类的属性,可以设定选中时的背景色、字体颜色等。

C# 判断datagridview列值 改变整行颜色
this.dataGridView1.Rows[e.RowIndex].DefaultCellStyle.BackColor = Color.Red;this.dataGridView1.Rows[e.RowIndex].DefaultCellStyle.BackColor = Color.White;将i该成e.RowIndex即可

C# Winform 如何居中DataGirdView中的文本?
\/\/设计:属性-杂项-Columns-选定列-列属性-DefaultCellStyle-布局-Alignment \/\/C#:this.dataGridView1.Columns[0].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;答案来自CSDN

相似回答