class MyPanel extends JPanel{
        MyPanel(){
            addMouseListener(new MouseAdapter() {
                @Override
                public void mouseClicked(MouseEvent e) {
                    if(getBackground() == Color.white)
                        setBackground(Color.black);
                    else
                        setBackground(Color.white);
                    System.out.println("Clicked");
                }
            });
        }
    }
I want to change not panel_background but frame_background. Would you tell me how to do this? thank you.
