come controllare se textbox è vuota c#
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
}
}