wie kann ich hier im Fenster ein Bild als Background setzen
geht das vieleicht mit paint
geht das vieleicht mit paint
Java:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class Fenster extends JFrame {
Fenster(){
super("Mein Fenster");
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setSize(250, 200);
Container contentPane=getContentPane();
contentPane.setLayout(new FlowLayout(FlowLayout.CENTER));
contentPane.setBackground(Color.BLUE); //wie kann ich im hintergrund ein img einfügen
this.setResizable(false);
this.setLocation(200, 200);
this.setVisible(true);
}
}