0

当我在 textbox1 中插入数据时,我需要在 textbox2 中同时放置相同的数据。

我不知道哪个事件允许此功能。我正在使用视觉工作室 2010。

提前致谢!

4

2 回答 2

4

使用TextChanged事件textbox1并使用它来更新textbox2

// This can be done via designer too.
this.textbox1.TextChanged += new EventHandler(textbox1_TextChanged);

现在,在您的表单类中:

void textBox1_TextChanged(object sender, EventArgs e)
{
    textbox2.Text = textbox1.Text;
}

希望这可以帮助。

于 2013-01-12T12:12:20.240 回答
0

将此处理程序添加到以下TextChanged事件textBox1

private void OnTextChanged(object sender, EventArgs e)
{
    var textBox = sender as TextBox;
    textBox2.Text = textBox.Text;
}
于 2013-01-12T12:11:23.320 回答