vote up 1 vote down star

Hi there,

I am making a prompt in C# that instructs the user how to use the program before they can access it.

What is the best way to display multiple lines of static text? Using a bunch labels doesn't seem like it would be the proper way... xD

flag

How about Console.WriteLine? – John Saunders May 12 at 21:33

4 Answers

vote up 3 vote down check

Use a text input box marked as read-only and multi-line.

link|flag
vote up 2 vote down

If you're using WinForms, you might want to consider adding a WebBrowser control to your form - you can then point the browser to an html file you send with the program. This allows you to use all of html to instruct your users, as well as point them to, say, your web site for more help or information.

link|flag
Great Idea! I will use this in the future, but it is not necessary for this project. Thanks! – Eric May 12 at 21:50
vote up 1 vote down

One label can contain multiple lines of text if the text has newlines in it.

link|flag
vote up 0 vote down

What is the UI (WinForms, Web, Console)?

link|flag
I am using WinForms, sorry I didn't state that before – Eric May 12 at 21:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.