Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #disable #panel
ADD COMMENT
Topic
Name
5+9 =