ahoj, chtel bych vas pozadat o radu. Mam pripraveny kod, ale vubec mi nejde nastavit akce na button. Po kliknuti na buttonek by se mel jakoby znovu vytvorit objekt panel (s tim ze samotny generovani uz se deje uvnitr). Jak na to?
static JFrame frame = new JFrame("Art");
public static void main(String[] args) {
frame.setLayout(null);
Draw panel = new Draw();
panel.setSize(460, 460);
panel.setLocation(46, 46);
frame.add(panel);
frame.setVisible(true);
frame.setSize(550, 620);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Button b = new Button();
b.setSize(80,40);
b.setLabel("Generuj");
b.setVisible(true);
b.setLocation(235, 530);
frame.add(b);
b.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
}
});
}
Díky za případný rady. :-)