码迷,mamicode.com
首页 > Windows程序 > 详细

C# textbox光标设置在末尾

时间:2015-10-26 18:21:08      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

// 设置光标位置 到文本最后
this.tbTestDialogue.Focus();
this.tbTestDialogue.SelectionStart = this.tbTestDialogue.TextLength;
//this.tbTestDialogue.SelectionLength = this.tbTestDialogue.TextLength;
// 随文本滚动 
this.tbTestDialogue.ScrollToCaret();

 

C# textbox光标设置在末尾

标签:

原文地址:http://www.cnblogs.com/luciakally/p/4911674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!