vote up 0 vote down star

I'm making a simple log viewer which is composed of a big TextBox which shows the file, and a DispatchTimer that updates the TextBox from time to time by setting its Text property.

Whenever the focus is set to the TextBox, it keeps automatically scrolling to the place where the cursor is, even when I'm explicitly issue ScrollToEnd() on it. (In that case, the UI shows the scrollbar "jumping" from the end back to the cursor position).

How can I cause the TextBox to keep its current scrolled position and ignore the position of the cursor?

flag

One question. Why you not use a RichTextBox? – Ortus Mallum Sep 15 at 10:02
Lots of content, I'm afraid RichTextBox will be too slow and too complex. – Elazar Leibovich Sep 15 at 11:06

1 Answer

vote up 1 vote down

For Scrolling it is better to use a ScrollViewer

 <ScrollViewer HorizontalScrollBarVisibility="Auto" Height="80">
   <TextBlock Name="debugLog" />
 </ScrollViewer>

Assuming the Log is not editable.

link|flag
But then, how would I scroll to a specific line? (It is not editable indeed). – Elazar Leibovich Sep 15 at 11:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.