I'm having trouble getting my program to switch JPanels when I press the nextButton using card layout.
This is what it looks like:
I want the program to switch to the "customerSearch" JPanel. It has the Card Name & name of Card2. panelContainer has a card layout. What am I doing wrong?
public class Gui {
private JPanel panelContainer;
private JPanel takeoutOption;
private JPanel customerSearch;
private JButton nextButton;
private CardLayout cl = (CardLayout)panelContainer.getLayout();
public Gui() {
nextButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
cl.show(panelContainer, "Card2");
}
});
}