private
void disableControls()
{
foreach (Control ctrl in this.Controls)
{
if (ctrl is TextBox | ctrl is GroupBox)
{
ctrl.Enabled = false;
}
}
}
private void
enableControls()
{
foreach (Control ctrl in this.Controls)
{
if (ctrl is TextBox | ctrl is GroupBox)
{
ctrl.Enabled = true;
}
}
}