vote up 3 vote down star

What is he best way to implement Watermark functionality for a System.Windows.Forms.TextBox in .Net 2.0 with C#?


Edit:
@BtBh: Using the ready-made component from CodeProject was very easy. It's also with a The Code Project Open License (CPOL).

flag

2 Answers

vote up 1 vote down check

lately I needed a watermark textbox, the first thing that popped in to my head was OnLeave and OnEnter events of textbox, but first I googled it and I got two links first was the one in CodeProject which used the System.Drawing namespace and the other one was here using the SendMessage() over here http://vidmar.net/weblog/archive/2008/11/05/watermarked-textbox-in-windows-forms-on-.net.aspx.

I beleive the SendMessage one is much easier and it also has no flickering in it. though I used it.

I hope it will be helpful for you.

link|flag
@Peymankh: Thanks +1 and green checkmark. SendMessage is much easier – Kb Sep 12 at 15:41
vote up 4 vote down

It is not as straightforward as one would think. You need to use using the System.Drawing namespace and override the OnPaint event.

Here are some links of some people that have already done it.

Link & Link

link|flag
@BtBh: Thanks. The first link was what I needed. +1 I agree that it is not as straight forward as you would think. – Kb Feb 23 at 16:51

Your Answer

Get an OpenID
or

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