how disable the back off a panel csharp

Code Example - how disable the back off a panel csharp

                
                        //disbable all except one thing
foreach (Control child in this.Controls)
{
    if (child != panel1)
        child.Enabled = false;
}