Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to get all panels in form in c#

foreach (Control c in this.Controls) {
    if (c is Panel) {
        //DO
    }
}
Source by www.google.com #
 
PREVIOUS NEXT
Tagged: #panels #form
ADD COMMENT
Topic
Name
8+2 =