为什么我无法将文本框值替换为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
答案 0 :(得分:0)
If AccountInfo.ShowDialog = DialogResult.OK Then DataGridView1.item(colomnindex,rowindex).Value = AccountInfo.txtPrtflDscrptn.Text End If
你可以给出colomnindex和rowindex的值