I have a single line readOnly RichTextBox with wordWrap disabled, and I add programmatically one single very long line of text.
However the horizontal scrollBar does not apear, even if I set ScrollBars
to ForcedHorizontal
.
How can I fix this?
I can navigate through the whole line if i use the arrow keys on the keyboard, but this only makes things worse.
RichTextBox
and give it a long string of text withWordWrap=false
, I see the horizontal scrollbar automatically. WithForcedHorizontal
, do you see the greyed out scrollbar when there is no text? Sanity check, is the bottom of the text box possibly cut off? – Pap