Answers for "how disable the back off a panel C#"

C#
0

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;
}
Posted by: Guest on January-10-2021

Code answers related to "how disable the back off a panel C#"

C# Answers by Framework

Browse Popular Code Answers by Language