change JPanel after clicking on a button

Posted by Fixus on Stack Overflow See other posts from Stack Overflow or by Fixus
Published on 2012-06-11T16:34:53Z Indexed on 2012/06/11 16:40 UTC
Read the original article Hit count: 138

Filed under:
|

I'm building simple GUI for my app. I have couple of JPanels. I want to display them depending on action that was performed by clicking on a JButton. How can I disable one JPanel and enable another one ?

Couple of details. I have a class with JFrame where I'm building starting gui. Where I have buttons and some text. Clicking on one of the buttons should change the view in this JFrame

my button definition

    JButton btnStart = new JButton("Start");
    btnStart.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {

        }
    });
    btnStart.setBounds(10, 11, 110, 23);
    contentPane.add(btnStart);

© Stack Overflow or respective owner

Related posts about java

Related posts about swing