0

I'm creating a windows form application using visual c#. I'm wondering how should I add title text beside a textbox? For example, Commonly seen "Comments:" serves as a title for the textbox to the right of it, letting people know that comments should be entered here.

scottyuxiliu
  • 21
  • 1
  • 3
  • 9
    Just add a label and give the text as Comments. – Joseph Aug 12 '15 at 13:32
  • There are already answers for this: [one](http://stackoverflow.com/questions/2487104/how-do-i-implement-a-textbox-that-displays-type-here), [two](http://stackoverflow.com/questions/4902565/watermark-textbox-in-winforms), [three](http://stackoverflow.com/questions/18497130/watermark-for-textbox) – tomab Aug 12 '15 at 13:41
  • @tomab sry but i have to tell you, he isn't looking for watermark it is much simpler – WiiMaxx Aug 12 '15 at 13:48

1 Answers1

5

you can use a Label control, change the text and put it where ever you want.

laskdjf
  • 1,166
  • 1
  • 11
  • 28