简体   繁体   中英

Parent container/panel for a CardLayout

How I can get the 'container' panel for any panel in CardLayout .

That is, if a panel is a card in another 'container' panel, then how to get reference to this 'container' panel, from the card?

Here's what i am doing:-

public class LogInPanel extends javax.swing.JPanel implements ActionListener{

    /**
     * Creates new form Panel2
     */
   private JPanel parentPanel;
   private CardLayout c1=null;
    public LogInPanel() {
        initComponents();
        //c1=new CardLayout();
        parentPanel=(JPanel)(SwingUtilities.getAncestorOfClass(this.getClass(), this));

        c1=(CardLayout)(parentPanel.getLayout());
        submitLogin.addActionListener(this);
    }
...

You can use the method getParent that is provided by the Component superclass. For your panel that is a card, simply call panel.getParent() and it will give you the containing (parent) panel.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM