Tag: tableadapter

如何删除选定的DataGridViewRow并更新连接的数据库表?

我有一个Windows窗体应用程序(用C#编写)的DataGridView控件。 我需要的是:当用户select一个DataGridViewRow,然后点击一个“删除”button,该行应该被删除,接下来,数据库需要更新使用表适配器。 这是我迄今为止: private void btnDelete_Click(object sender, EventArgs e) { if (this.dataGridView1.SelectedRows.Count > 0) { dataGridView1.Rows.RemoveAt(this.dataGridView1.SelectedRows[0].Index); } } 而且,这只会删除一行。 我想在哪里用户可以select多行。