Hey,
ich stehe ein bisschen aufm Schlauch, ich weiß leider nicht wieso mein Bild nicht angezeigt wird:
Wäre cool wenn mir wer sagen könnte woran das liegt!
Vielen Dank für eure Hilfe!
ich stehe ein bisschen aufm Schlauch, ich weiß leider nicht wieso mein Bild nicht angezeigt wird:
Java:
package Frame;
import java.awt.FlowLayout;
import javax.swing.*;
public class MainFrame {
public static JFrame frame;
public static JLabel bg;
public static void createFrame() {
frame = new JFrame("NoName");
frame.setSize(800, 600);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setLayout(null);
frame.setResizable(false);
frame.requestFocus();
frame.setVisible(true);
Layout.Start.Start();
FrameBackground();
}
public static void FrameBackground() {
bg = new JLabel(new ImageIcon("rsc/BlueBackground.png"));
bg.setBounds(0,0,800,600);
bg.setVisible(true);
bg.setLayout(new FlowLayout());
frame.add(bg);
}
}
Wäre cool wenn mir wer sagen könnte woran das liegt!
Vielen Dank für eure Hilfe!