Package com.alee.extended.panel

Examples of com.alee.extended.panel.WebAccordion


    {
        // Title icon
        final ImageIcon icon = loadIcon ( "text.png" );

        // Simple pane
        final WebAccordion accordion = new WebAccordion ( WebAccordionStyle.accordionStyle );
        accordion.setMultiplySelectionAllowed ( false );
        accordion.addPane ( icon, "Some pane", createCustomHorContent () );
        accordion.addPane ( icon, "Some long long pane", createCustomHorContent () );
        accordion.addPane ( icon, "Some other pane", createCustomHorContent () );

        return new GroupPanel ( 4, accordion );
    }
View Full Code Here

TOP

Related Classes of com.alee.extended.panel.WebAccordion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.