c#中datagridview中能不能给指定的单元格赋值并让其在单元格中显示出来?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#中datagridview中能不能给指定的单元格赋值并让其在单元格中显示出来?相关的知识,希望对你有一定的参考价值。
不通过数据源赋值
完全可以的,比如:1、给指定的单元格赋值:
this.dataGridView1.Rows[x].Cells[x].Value=XXX;
2、使用循环给所有行的第一列赋值:
for(int i=0;i<this.dataGridView1.Rows.Count;i++)
this.dataGridView1.Rows[i].Cells[0].Value=XXX;
其他类似的用法相信通过上面两个例子你就清楚了,希望对你有帮助,还有疑问请追问或是Hi 参考技术A 可以是可以,不过比较烦,这是我前几天的回答,你可以参考下
http://zhidao.baidu.com/question/2266132070081753668.html?oldq=1 参考技术B
一行搞定
this.dataGridView1.Rows[0].Cells[1].Value = 20;对控件dataGridView1的第1行第2列赋值20
c# 消除datagridview 单元格选中边框
通过CellPaint事件解决单元格选中边框问题。
public void PaintBackground (
Rectangle clipBounds,
bool cellsPaintSelectionBackground
)
参数:
clipBounds
一个指定要绘制的 DataGridView 区域的 Rectangle。
cellsPaintSelectionBackground
true 用于使用 DataGridViewCell.InheritedStyle 的 SelectionBackColor 属性的颜色绘制指定边界的背景;false 用于使用 DataGridViewCell.InheritedStyle 的 BackColor 属性的颜色绘制指定边界的背景。
public void PaintContent (
Rectangle clipBounds
)
参数
clipBounds
一个指定要绘制的 DataGridView 区域的 Rectangle。
添加DataGridView的CellPaint事件,代码如下:
private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
e.Handled = true;
e.PaintBackground(e.CellBounds, true);
e.PaintContent(e.CellBounds);
}
本文出自 “小森工作室” 博客,请务必保留此出处http://898779.blog.51cto.com/888779/1878835
以上是关于c#中datagridview中能不能给指定的单元格赋值并让其在单元格中显示出来?的主要内容,如果未能解决你的问题,请参考以下文章
C# 中datagridview中的如何给单元格设置滚动条,是单元格不是整个datagridview
将 DataGridView 单元格 BackColor 传递给变量以供以后在 c# 中使用
c# winform datagridview第一行单元格不能调整高度~~