C #, displaying plain text in a form

I made this simple drawing to explain my needs:   Plain Text in C #

I can only find "complex" features like RTF textbox, etc. I couldn't figure out how to display "plain text" in Form1.cs

(I do not talk about HTML to WinForm)
(Search did not return any useful results)

      

+2


a source to share


2 answers


You can use Label or TextBox.



If you are using a TextBox, set the MultiLine parameter to true and ReadOnly to true to prevent editing.

+5


a source


Use TextBox

or Label

. That's what they are for - displaying plain text.



+2


a source







All Articles