In winform, programmatically place the cursor at the end of the text box and scroll the scroll bar to this position

Source: Internet
Author: User

A more convenient and concise operation is:

 

Textboxmsg. appendtext (datetime. Now. tostring ( " Yyyy-mm-dd hh: mm: Ss. fff " ) +   " : "   + MSG +   " \ R \ n " );

//////////////////////////////////////// //////////////////////////////////////// /////////////////

 

In the past, I wrote another complex method:


Private   Void Txtboxrecivecmd_textchanged ( Object Sender, eventargs E)
{
Txtboxrecivecmd. selectionstart = Txtboxrecivecmd. Text. Length +   10 ; // Set the start position of the selected text to the text length of the text box. If the length of the text is exceeded, it is the end of the text by default.
Txtboxrecivecmd. selectionlength =   0 ; // Set the length of the selected text to 0 (move the cursor to the end of the text)
Txtboxrecivecmd. scrolltocaret (); // Move the scroll bar to the cursor position
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.