C#中,如何datagridview 中某一行的字体样式、颜色?
例如我有10行内容,我修改第二行的字体为加粗,求解。。。我是在加载datagridview的容器时就给datagridview就赋值了然后根据一定的条件,设置某一行的字体...
例如我有10行内容,我修改第二行的字体为加粗,求解。。。
我是在加载datagridview的容器时 就给datagridview就赋值了
然后根据一定的条件,设置某一行的字体
CellFormating可以么 =.=
-------------
补充下2楼
你那些属性都是只读的
=.=
各位大大们,你们能不能先测试下代码再回答啊 0.0 展开
我是在加载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;
看看是不是你要的效果。。。
所有行:
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;
看看是不是你要的效果。。。
展开全部
在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;
}
}
给个邮箱地址我发给你看看
郁闷,那你自己试试吧!可能换是不行
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;
}
}
给个邮箱地址我发给你看看
郁闷,那你自己试试吧!可能换是不行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
this.DgvItemInfo.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.Green; //背景色
this.DgvItemInfo.Rows[i].DefaultCellStyle.ForeColor = Color.Red; //字体颜色
this.DgvItemInfo.Rows[i].DefaultCellStyle.ForeColor = Color.Red; //字体颜色
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
手上没有C#,我估计应该这样做。
循环Grid的所有Row,找到满足你需求的Row,调用它的BackgroundColor属性吧。
循环Grid的所有Row,找到满足你需求的Row,调用它的BackgroundColor属性吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询