textchanged事件不起作用

时间:2012-07-24 09:16:27

标签: c#

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

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

1 个答案:

答案 0 :(得分:0)

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