我有两个text boxes
以及windows form app
中使用c#
的按钮。
当我在txtbox1
中输入文字并将该文字发送到txtbox2
上的button click event
时,光标也会转到txtbox2
。
我的要求是当我在textBox1
上向textBox2
发送按钮点击事件时,光标应保留在textBox1
中。
答案 0 :(得分:2)
答案 1 :(得分:0)
在点击事件后手动设置光标位置的原因是什么?
Cursor.Position = new Point(MyFirstTextbox.Location.X -5, MyFirstTextbox.Location.Y -5);
Control.Focus()也可以帮助你。
答案 2 :(得分:0)
按钮点击最后点击:
textbox1.focus()
focus
是您需要使用的方法。