Witam,
mam pewien problem, chciałem ulepszyć mój program by startował dopiero po naciśnięciu przycisku "Start" lecz nie działa, i nie wiem dlaczego. Bardzo proszę o pomoc, a oto kod:
import java.awt.event.*;
import javax.swing.*;
public class Frame extends JFrame{
public Frame()
{
this.setSize(800,600);
this.setTitle("Gra");
this.setResizable(false);
JButton go = new JButton("Start");
buttonPanel = new JPanel();
buttonPanel.add(go);
add(buttonPanel);
Start goAction = new Start();
go.addActionListener(goAction);
}
private class Start implements ActionListener
{
public void actionPerformed(ActionEvent event) {
Mouse mouse = new Mouse();
add(mouse);
}
}
private JPanel buttonPanel;
}
Z góry dziękuje :)