Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道这是一个愚蠢的问题,但我仍然想知道它。我有两个文本框,textbox1 和 textbox2。我在 textbox1 中输入了一些文本。现在,当我使用选项卡索引或通过在 textbox2 上单击鼠标从 textbox1 移动到 textbox2 时,我希望文本框一的值应该显示在 textbox2 上。我知道我可以让我们使用鼠标悬停事件。但是,如果我能从你那里得到一些好的意见,那就太好了。提前致谢
private void textBox1_Leave(object sender, EventArgs e) { textBox2.Text = textBox1.Text; } private void textBox2_Enter(object sender, EventArgs e) { textBox2.Text = textBox1.Text; }