how do i change the background to a custom one.
code
JButton button = new JButton();
JButton quit = new JButton();
public Mainmenu() {
Icon b = new ImageIcon(getClass().getResource("play.jpg"));
play = new JButton(playb);
add(button,BorderLayout.CENTER);
Icon quitb = new ImageIcon(getClass().getResource("quit.jpg"));
quit = new JButton(quitb);
add(quit,BorderLayout.SOUTH);
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
}
});
quit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
dispose();
}
});
}