I am working on a Winforms project and I would like to create a Watermark in a TextBox. I tried a code that seems to be the right solution but is incorrect.
There is my code :
private void Form1_Load(object sender, EventArgs e)
{
textBox1.Text = "Veuillez entrez votre nom ici";
if (textBox1.GotFocus)
{
textBox1.Text = "";
}
}
And I get this error at "GotFocus" :
CS0079 C# The event can only appear on the left hand side of += or -=
I searched on google but I didn't find any solutions to help my case.
What should I use instead of "GotFocus" to create a Watermark ?
Best regards, Zancrew.