0

为什么我不能将文本框值替换为 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
4

1 回答 1

0
如果 AccountInfo.ShowDialog = DialogResult.OK 那么

  DataGridView1.item(colomnindex,rowindex).Value = AccountInfo.txtPrtflDscrptn.Text

 万一

你可以给出 colomnindex 和 rowindex 的值

于 2013-05-30T12:12:58.187 回答