C
chip
Gast
hallo
ich hab gerade ein echtes problem, und zwar will ich per button ein fenster vergrößern.
ich hab mal hier ein beispieltext erstellt.
könnt ihr mir da bitte weiterhelfen
danke
ich hab gerade ein echtes problem, und zwar will ich per button ein fenster vergrößern.
ich hab mal hier ein beispieltext erstellt.
könnt ihr mir da bitte weiterhelfen
danke
Code:
import java.awt.*;
import java.awt.event.*;
public class Bild8 extends Frame implements WindowListener,
ActionListener {
Button ew;
public Bild8() {
Frame window = new Frame("");
window.addWindowListener(this);
window.setTitle("Roche");
window.setLocation(200, 200);
window.setSize(165,280);
ew= new Button("ew");
ew.setSize(40,40);
ew.setLocation(30,80);
ew.addActionListener(this);
window.add(ew);
window.setVisible(true);
}
public void actionPerformed(ActionEvent ea) {
String but = ea.getActionCommand();
if (but=="ew") {}
}
public static void main(String[] args) {
Bild8 meinFenster = new Bild8();
}
public void windowClosing(WindowEvent e) { System.exit(0); }
public void windowActivated(WindowEvent e) {}
public void windowClosed(WindowEvent e) {}
public void windowDeactivated(WindowEvent e) {}
public void windowDeiconified(WindowEvent e) {}
public void windowIconified(WindowEvent e) {}
public void windowOpened(WindowEvent e) {}
}