I have a textbox with the .Multiline property set to true. At regular intervals, I am adding new lines of text to it. I would like the textbox to automatically scroll to the bottom-most entry (the newest one) whenever a new line is added. How do I accomplish this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can use the following code snippet:
which will automatically scroll to the end. |
|||||||||
|
|
Try to add the suggested code to the TextChanged event:
|
||||
|
|
If you use |
|||
|
|
I needed to add a refresh:
|
||||
|
|
|
It seems the interface has changed in .NET 4.0. There is the following method that achieves all of the above. As Tommy Engebretsen suggested, putting it in a TextChanged event handler makes it automatic.
|
|||||
|