📜  come controllare se textbox è vuota c# Code Example

📅  最后修改于: 2022-03-11 14:48:53.146000             🧑  作者: Mango

代码示例1
private void button1_Click(object sender, EventArgs e)
        {
            if (CheckText(textBox1, textBox2))
            {
                MessageBox.Show("Compilare tutti i campi obbligatori");
            }

            else
            {
                // il resto del tuo codice qui
            }
        }