Windows form c# Как перебрать все TextBox и проверить пустоту

Windows form c# "Как перебрать все TextBox и проверить пустоту!"

Bool isEmpty = false;
foreach (Control c in this.Controls)
{
if (c is TextBox)
{
TextBox txt = c as TextBox;
if (txt.Text == ""){
isEmpty = true;
break;
}
}
}

Добавить комментарий