views:

67

answers:

2

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

I can only find rather "complex" functions, like RTF Text box etc. I couldn't figure out how to display "plain text" in a Form1.cs

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

Use a TextBox or Label. That's what they're designed for - displaying plain text.

Aaronaught
+2  A: 

You can use a Label or a TextBox.

If you use a TextBox, set MultiLine to true and ReadOnly to true to not allow editing.

Mark Redman