C#DataGridView添加新⾏的2个⽅法
可以静态绑定数据源,这样就⾃动为DataGridView控件添加相应的⾏。假如需要动态为DataGridView控件添加新⾏,⽅法有很多种,下⾯简单介绍如何为DataGridView控件动态添加新⾏的两种⽅法:
⽅法⼀:
复制代码代码如下:
int index=this.dataGridView1.Rows.Add();
this.dataGridView1.Rows[index].Cells[0].Value = "1";
this.dataGridView1.Rows[index].Cells[1].Value = "2";
rows函数的使用方法及实例this.dataGridView1.Rows[index].Cells[2].Value = "监听";
利⽤dataGridView1.Rows.Add()事件为DataGridView控件增加新的⾏,该函数返回添加新⾏的索引号,即新⾏的⾏号,然后可以通过该索引号操作该⾏的各个单元格,如dataGridView1.Rows[index].Cells[0].Value = "1"。这是很常⽤也是很简单的⽅法。
⽅法⼆:
复制代码代码如下:
DataGridViewRow row = new DataGridViewRow();
DataGridViewTextBoxCell textboxcell = new DataGridViewTextBoxCell();
textboxcell.Value = "aaa";
row.Cells.Add(textboxcell);
DataGridViewComboBoxCell comboxcell = new DataGridViewComboBoxCell();
row.Cells.Add(comboxcell);
dataGridView1.Rows.Add(row);
⽅法⼆⽐⽅法⼀要复杂⼀些,但是在⼀些特殊场合⾮常实⽤,例如,要在新⾏中的某些单元格添加下拉框、按钮之类的控件时,该⽅法很有帮助。
DataGridViewRow row = new DataGridViewRow(); 是创建DataGridView的⾏对象,DataGridViewTextBoxCell是单元格的内容是个 TextBox,DataGridViewComboBoxCell是单元格的内容是下拉列表框,同理可知,DataGridViewButtonCell是单元格的内容是个按钮,等等。textboxcell是新创建的单元格的对象,可以为该对象添加其属性。然后通过
row.Cells.Add(textboxcell)为row对象添加textboxcell单元格。要添加其他的单元格,⽤同样的⽅法即可。
最后通过dataGridView1.Rows.Add(row)为dataGridView1控件添加新的⾏row。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。