T
Tech
Gast
Code:
public class Kurve extends JPanel {
/** Creates a new instance of Kurve */
public Kurve() {
initComponents();
}
private void initComponents() {
addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent evt) {
formMouseClicked(evt);
}
});
addMouseMotionListener(new MouseMotionAdapter() {
public void mouseMoved(MouseEvent evt) {
formMouseMoved(evt);
}
});
setBackground(Color.white);
setBorder(BorderFactory.createEtchedBorder());
add(positionLabel);
ebeneLabel.setText("Ebene: " + ebene);
add(ebeneLabel);
}...
Ich hab hier ein JPanel, dass ich in einem JFrame anzeigen lassen will, aber mit einer bestimmten Größe.
Hier ein Aussschnitt:
Code:
private static Ausgabe a = new Ausgabe();
private static Kurve k = new Kurve();
public static void main(String args[]) {
try {
Thread.sleep(3000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
//k.setSize(a.getWidth() - 300, a.getHeight() - a.ueberschrift.getHeight() - (a.getHeight() - a.jSeparator1.getY()) - 10);
k.setLocation(5, a.ueberschrift.getHeight() + 5);
a.add(k);
a.setVisible(true);
}
});
}
Vielleicht kann mir jemand helfen.