datagridview1_keypress 不工作
datagridview1_keypress does not working
private void dataGridView1_KeyPress(object sender, KeyPressEventArgs e)
{
if (dataGridView1.CurrentCell.ColumnIndex == 5 || dataGridView1.CurrentCell.ColumnIndex == 10)
{
aTimer.Interval = 850;
aTimer.Start();
string pwd = "*";
pass.Add(e.KeyChar);
dataGridView1.CurrentCell.Value = pwd;
dataGridView1.CurrentCell.Value = GridView1_PreRender1(dataGridView1.CurrentCell.Value.ToString());
}
}
我没有收到任何错误,但在运行时,我单击并输入值的任何网格单元格 KeyPress 都没有采取任何操作,这让我很生气。
我太绝望了,任何帮助都会很棒。
此问题与以下事实有关:一旦您开始编辑单元格的值,您就不再位于 DataGridView
内,而是位于由单元格所属列定义的 "Editing Control" 内。对于 DataGridViewTextBoxColumn
,这是 TextBox
。您需要连接到编辑控件的事件中。详情分享于another answer:
private void dataGridView1_KeyPress(object sender, KeyPressEventArgs e)
{
if (dataGridView1.CurrentCell.ColumnIndex == 5 || dataGridView1.CurrentCell.ColumnIndex == 10)
{
aTimer.Interval = 850;
aTimer.Start();
string pwd = "*";
pass.Add(e.KeyChar);
dataGridView1.CurrentCell.Value = pwd;
dataGridView1.CurrentCell.Value = GridView1_PreRender1(dataGridView1.CurrentCell.Value.ToString());
}
}
我没有收到任何错误,但在运行时,我单击并输入值的任何网格单元格 KeyPress 都没有采取任何操作,这让我很生气。 我太绝望了,任何帮助都会很棒。
此问题与以下事实有关:一旦您开始编辑单元格的值,您就不再位于 DataGridView
内,而是位于由单元格所属列定义的 "Editing Control" 内。对于 DataGridViewTextBoxColumn
,这是 TextBox
。您需要连接到编辑控件的事件中。详情分享于another answer: