为什么我不能将文本框值替换为 DataGridView ..这里我只想编辑那个特定的单元格..无法删除编辑的文本并将其添加到 datagridview 中...
AccountInfo.txtPrtflDscrptn.Text = DataGridView1.CurrentRow.Cells(2).Value.ToString
If AccountInfo.ShowDialog = DialogResult.OK Then
DataGridView1.Rows.RemoveAt(DataGridView1.CurrentCell.RowIndex)
DataGridView1.Rows.Insert(AccountInfo.txtPrtflDscrptn.Text)
End If