I have a text box whose content is constantly changing and whenever that happens, the scrollbar automatically resets back to the top (not just the text box, another list view of mine behaves in the same manner). Is there anyway to save the current scroll position and then load it later? It’s annoying to have to scroll the textbox/listview all the way down everytime the change occurs.
I have a text box whose content is constantly changing and whenever that happens,
Share
This behavior only occurs when you are using a normal TextBox with “multiline” set to true. If you use a RichTextBox instead, the scroll bar position will not change when new text is added.