0
private void txtName_TextChanged(object sender, EventArgs e)
{
    if (dataGridView1.SelectedRows.Count == 1)
    {
        dataGridView1.SelectedRows[0].Cells["someValue"].Value = txtName.Text;
    }
}

当文本框中的文本发生更改时,它应该显示在数据网格视图中,如果我选择已经有数据的单元格,那么它工作正常但是如果我选择一个新行(空行),文本不会出现在数据网格视图中允许用户为 datagrid 视图添加行设置为 true。

4

1 回答 1

0

确保您的文本框 AutopostBack 属性设置为“true”..否则 textchanged 事件将不会触发

于 2012-07-24T09:35:52.090 回答