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.
Asked
Active
Viewed 2,801 times
0
-
9Just 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 Answers
5
you can use a Label
control, change the text and put it where ever you want.

laskdjf
- 1,166
- 1
- 11
- 28
-
I.e. TextBox does not have a title property. One must use a separate GUI component. – Al Lelopath Oct 24 '17 at 15:43