java中有setCaretPosition(pos)和getCaretPosition()
vc中有GetCaretPos()和SetCaretPos()
C#中没有啊! 如果想控制光标的位置可以用TextBox.SelectionStart来设置;
比如想要让光标移动到文字的最后可以这样写:
textBox1.SelectionStart
=
textBox1.Text.Length;
java中有setCaretPosition(pos)和getCaretPosition()
vc中有GetCaretPos()和SetCaretPos()
C#中没有啊! 如果想控制光标的位置可以用TextBox.SelectionStart来设置;
比如想要让光标移动到文字的最后可以这样写: