如何为CardLayout
中的任何面板获取'容器'面板。
也就是说,如果面板是卡片 在另一个“容器”面板中,然后如何从卡片中引用这个“容器”面板?
这就是我在做的事情: -
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);
}
...