W
wapo
Gast
Code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class GraphTest extends JFrame {
private Leinwand leinwand;
private JPanel schalterfeld;
private JButton clear;
private JButton aus;
private JComboBox radius;
private JComboBox art;
private JComboBox farbe;
static final long serialVersionUID = 1L;
public GraphTest() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setTitle("GraphTest");
Container container = getContentPane();
container.setBackground(Color.LIGHT_GRAY);
//Leinwand
leinwand = new Leinwand();
leinwand.setBackground(Color.WHITE);
//Schalterfeld
schalterfeld = new JPanel();
clear = new JButton("Clear");
clear.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println(e);
}
});
aus = new JButton("Exit");
aus.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
});
schalterfeld.add(clear);
schalterfeld.add(aus);
container.add(schalterfeld, BorderLayout.NORTH);
container.add(leinwand, BorderLayout.CENTER);
}
public class Leinwand extends JPanel {
static final long serialVersionUID = 1L;
public Leinwand() {
addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
}
});
}
public void paint(Graphics g) {
}
}
public static void main(String[] args) {
GraphTest fenster = new GraphTest();
fenster.setSize(400,300);
fenster.setLocation(100,100);
fenster.setVisible(true);
}
}
Was nicht funktioniert sind 3 Sachen.
1) Er wird nicht ordentlich schliessen.
2) JPanel leinwand ist nicht vorhanden.
3) Die Buttons gehen nicht.
Kann mir da einer helfen?