M
M
MinasM2016-06-24 02:05:09
Programming
MinasM, 2016-06-24 02:05:09

How to display text on a form in C#?

Tell.
Earlier in the dense visual basic 6.5 there was a print method with its help it was possible to display the text form1.print = " " directly on the form without any controls - something like this (I don't really remember now)
Is there something similar in C # ?
The essence of the problem. It is necessary to display a huge pile of text on the form label is not suitable, because there is no multiline, and textbox and richtextbox do not call to display blocked text (i.e., which cannot be selected and copied)
Is there a way how to solve this issue

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Rou1997, 2016-06-24
@MinasM

label is not suitable, because no multiline

Yes, AutoSize = false, WordWrap = true, orlabel1.Text = "Line 1\nLine 2";
Allowed, Enabled = false, but you want bad things, you shouldn't do that.
form1.print = " " - something like this (I don't really remember now)
Is there something similar in C# ?

You can draw directly on the form, but it's hard to implement for a beginner, it will be a "bicycle".

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question