C#中,如何datagridview 中某一行的字体样式、颜色?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
看看是不是你要的效果。。。 参考技术A 在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;
给个邮箱地址我发给你看看
郁闷,那你自己试试吧!可能换是不行 参考技术B this.DgvItemInfo.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.Green; //背景色
this.DgvItemInfo.Rows[i].DefaultCellStyle.ForeColor = Color.Red; //字体颜色 参考技术C 手上没有C#,我估计应该这样做。
循环Grid的所有Row,找到满足你需求的Row,调用它的BackgroundColor属性吧。
如何清空C#中dataGridView的某一行数据??
清空不是删除啊,也不是隐藏啊,要连接到数据库的,就把选中的那行的信息和数据库中的信息一起删除掉,是用C#写的代码,急啊
先把一个DataTable和数据库的表绑定,然后DataGridView.DataSource = DataTable
删除时
((DataTable)DataGridView.DataSource).Rows[行号].Delete();
更新时把((DataTable)DataGridView.DataSource)作为DataTable去更新数据库就行。 参考技术A 清空是指删除吗?
首先设置gridview的DataKeyNames属性绑定表的主键列
然后把GridView的AutoGenerateColumns属性设置为false
<asp:TemplateField HeaderText="删除" ShowHeader="False">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" OnClientClick="return confirm('确定删除吗?')"
CommandName="Delete" Text="删除"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
后台代码***********************************
删除
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
//获取选中行的绑定的ID,将ID作为参数传给删除方法
string Serial = GridView1.DataKeys[e.RowIndex].Value.ToString();
CustomItemManager.DeleteCustomItems(int.Parse(Serial)))
参考技术B 全部清空:dataset.tables.clear()
单行:this.dataGridView1.Rows[0].Visible = false; 参考技术C 清空某一行?删除了不就得了。
========================================
不是删除,那是隐藏?
this.GridView1.Rows[0].Visible = false;
注明:Rows[0] =》第一行
Rows[1] =》第二行
以上是关于C#中,如何datagridview 中某一行的字体样式、颜色?的主要内容,如果未能解决你的问题,请参考以下文章
C# Winform中 选中DatagridView控件中某行如何将该行某个字段(1,2,3,4,)的值绑定CheckedListBox控件的数
请教一下,C#,我现在用datagridview中某一单元格操作另一个datagridview,请问思路是怎样的呢?