Kan man nustille en JCheckBox? F.eks. når man klikke på den skal den gøre noget og bagefter skal "krydset" fra boksen fjernes automatisk.
nico was here
Noget i stil med:
JCheckBox box = .....//Opret en check box
box.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JCheckBox checkbox = (JCheckBox)e.getSource();
//Gør en hel masse
checkbox.setSelected(false);
}
});