I have to display multiline messages in any control in C#, which provides me the following 3 possibilities:
- Scrolling
- Text cannot be modified
- Click event
I tried the following options and faced problems:
Labels: Label is perfect for me but I couldn't find the scrolling property
TextBox: I tried to use textbox, which provided me scrolling but then the user can change the text. And if I set TextBox.Enable = False
, then the scrollbar cannot be moved an shown the image below: