Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
If we are talking about WinForms, then
// запоминаем текущую позицию курсора (позицию скролла запомнить нельзя)
int n = textBox1.SelectionStart;
// добавляем текст
// выделяем 0 символов - просто переставляем курсор на старую позицию
textBox1.Select(n, 0);
// и скроллим до него
textBox1.ScrollToCaret();
BUT
textBox1.Select(0, 0);
textBox1.ScrollToCaret();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question