Hallo,
wie kann ich einen Button aus einem Frame in Java löschen und zwar indem ich auf einen anderen Button klicke?
Hier ein Teil aus meinem Programm:
public Adressverwaltung()
{
super("Adressverwaltung");
this.setLayout(null);
this.setBounds(0,0,570,280);
Color c_background = new Color(0,255,0);
this.setBackground(c_background);
this.setVisible(true);
this.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent we)
{
System.exit(0);
} // public void windowClosing(WindowEvent we)
}); // this.addWindowsListener(new WindowAdapter);
Button b1 = new Button("Personendaten eingeben");
b1.setBounds(20,50,180,30);
this.add(b1);
ActionListener_machwas al_b1 = new ActionListener_machwas(b1);
b1.addActionListener(al_b1);
}
private class ActionListener_machwas implements ActionListener
{
private Button b = null;
public ActionListener_machwas(Object o)
{
b = (Button) o;
}// public ActionListener_machwas(Object o)
public void actionPerformed(ActionEvent ae)
{
if (b.getLabel() == "Personendaten eingeben")
{
HIER SOLL ANWEISUNG ZU BUTTON LÖSCHEN HIN
} // if (b.getLabel() == "Personendaten eingeben")
} // public void actionPerformed(Action Event ae)
} // private class ActionListener_machwas implements ActionListener