摘要:
思路是找到最先选择和最后选择到的行 ,弄一个for循环,根据这些行的索引值在执行数据的删除.我这里用了EF. DialogResult result = MessageBox.Show("确定删除吗?", "删除", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { //选中第一行的索引 var first = dataGridView1.Rows.GetFirstRow(DataGridViewElementStat... 阅读全文