简体   繁体   中英

if statements in C# for a textbox to change back to normal when i press a button for the second time

This is the code that i used to change the text in the text box from "Livre" to "Ocupado" What code should i use to change it from "Ocupado" to "Livre"

private void button1_Click(object sender, EventArgs e)
{
    textBox1.Text="Ocupado";
}
private void button1_Click(object sender, EventArgs e)

        {
            if (textBox1.Text == "Livre")
            {
                textBox1.Text = "Ocupado";
            }
            else
            {
                textBox1.Text = "Livre";
            }
        }

you can add a variable to your class

eg:

bool livre = true;


private void button1_Click(object sender, EventArgs e)
{
    if (livre)
    {
        textBox1.Text="Ocupado";
    }
    else
    {
        textBox1.Text="Livre";
    }
    livre = !livre;     
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM