how disable the back off a panel C# code example
Example: how disable the back off a panel C#
//disbable all except one thing
foreach (Control child in this.Controls)
{
if (child != panel1)
child.Enabled = false;
}
//disbable all except one thing
foreach (Control child in this.Controls)
{
if (child != panel1)
child.Enabled = false;
}