标签:orb 文本 编写 use 哈哈 tag 删除行 rto eve
原来有一行:
点击添加,在下面增加同样的一行
新增加的行有一列删除按钮,点击某行的删除按钮时,删除当前行
方法:
哈哈,我果然好聪明啊
this.dataGridView1.Rows.Add();
点击某行的删除按钮时,删除当前行
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { DataGridViewColumn column = dataGridView1.Columns[e.ColumnIndex]; if (column is DataGridViewButtonColumn) { //这里可以编写你需要的任意关于按钮事件的操作~ //MessageBox.Show("按钮被点击"); //this.dataGridView1.CurrentRow.Visible=false;//隐藏当前行 this.dataGridView1.Rows.RemoveAt(e.RowIndex);//删除当前行 } } }
小爬虫再爬我的网页......
标签:orb 文本 编写 use 哈哈 tag 删除行 rto eve
原文地址:http://www.cnblogs.com/Donnnnnn/p/6029749.html