private void Form1_Load(object
sender, EventArgs e)
{
textBox1.Text = "Apple";
}
private void textBox1_TextChanged(object
sender, EventArgs e)
{
if
(textBox1.Text.Length == 1)
{
if
(textBox1.Text == "B" ||
textBox1.Text == "b")
{
textBox1.Text = "Ball";
}
}
} |