0

我知道这是一个愚蠢的问题,但我仍然想知道它。我有两个文本框,textbox1 和 textbox2。我在 textbox1 中输入了一些文本。现在,当我使用选项卡索引或通过在 textbox2 上单击鼠标从 textbox1 移动到 textbox2 时,我希望文本框一的值应该显示在 textbox2 上。我知道我可以让我们使用鼠标悬停事件。但是,如果我能从你那里得到一些好的意见,那就太好了。提前致谢

4

1 回答 1

1
private void textBox1_Leave(object sender, EventArgs e)
    {
        textBox2.Text = textBox1.Text;
    }

    private void textBox2_Enter(object sender, EventArgs e)
    {
        textBox2.Text = textBox1.Text;
    }
于 2012-09-21T05:37:50.240 回答