控制TextBox中光标的位置

时间:2022-02-06 10:31:15

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

控制TextBox中光标的位置 textBox1.SelectionStart  =  textBox1.Text.Length;