Bueno, pude solucionar el incoveniente. Aquí comparto como lo hice.
Agregué el evento textBox1_TextChanged
Código:
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (this.textBox1.Text == "+")
{
this.textBox1.Clear();
}
}
Gracias a todos por su tiempo!!!