C# 2008 SP1。
我正在从当前在 datagridview 上选择的行中删除一行。
我正在使用 Typed 数据集,并且我的 datagridview 绑定到绑定源。
但是,我认为我的技术不是最好的,即使它有效。
非常感谢您的任何建议,
DataRow[] drDelete;
// Get the value of the PK from the currently selected row
DataRowView drv = (DataRowView)bsAddressBook.Current;
int index = Convert.ToInt16(drv[0]);
// Find the actual data row from the primary key and delete the row
drDelete = dsCATDialer.AddressBook.Select(string.Format("ID = '{0}'", index));
dsCATDialer.AddressBook.Rows.Remove(drDelete[0]);