c#中datagridview中能不能给指定的单元格赋值并让其在单元格中显示出来?

不通过数据源赋值
2024年11月27日 08:27
有4个网友回答
网友(1):

完全可以的,比如:
1、给指定的单元格赋值:
this.dataGridView1.Rows[x].Cells[x].Value=XXX;
2、使用循环给所有行的第一列赋值:
for(int i=0;i this.dataGridView1.Rows[i].Cells[0].Value=XXX;
其他类似的用法相信通过上面两个例子你就清楚了,希望对你有帮助,还有疑问请追问或是Hi

网友(2):

可以是可以,不过比较烦,这是我前几天的回答,你可以参考下
http://zhidao.baidu.com/question/2266132070081753668.html?oldq=1

网友(3):

一行搞定

   this.dataGridView1.Rows[0].Cells[1].Value = 20;

对控件dataGridView1的第1行第2列赋值20

网友(4):

可以通过这种方式:gridview1.rows[i].cells[1].text=xxx;