Hi, ich verstehs nicht:
Die BackgroundColor Blue in meinem kasten-label wird einfach nciht angezeigt.
WArum bloß nicht ?
Hat das mit dem Applet zu tun ?
Vielen DAnk und schöne GRüße
Sladda
Code:
import javax.swing.*;
import java.applet.*;
import java.awt.Color;
public class Gui extends JApplet {
public JLabel kasten = new JLabel("kasten");
public void init(){
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
createGUI();
}
});
} catch (Exception e) {
System.err.println("createGUI didn't successfully complete");
}
}
private void createGUI(){
this.setSize(800, 600);
this.getContentPane().setLayout(null);
this.getContentPane().setBackground(Color.yellow);
//////////// kasten /////////////
//this.kasten .setBounds(100, 100, 150, 150);
this.kasten.setSize(150,150);
this.kasten.setLocation(100,100);
this.kasten.setBackground(Color.BLUE);
this.kasten.setForeground(Color.BLACK);
this.kasten.setVisible(true);
this.getContentPane().add(this.kasten );
}
}
Die BackgroundColor Blue in meinem kasten-label wird einfach nciht angezeigt.
WArum bloß nicht ?
Hat das mit dem Applet zu tun ?
Vielen DAnk und schöne GRüße
Sladda