Question :
Mes JComponents ne sont pas visibles lorsque je définis une image d'arrière-plan. Comment puis-je remédier à cela ?
Code :
Voir le code fourni dans la description de la question.
Réponse :
Pour ajouter une image d'arrière-plan à un JPanel, vous pouvez utiliser ce qui suit étapes :
Utilisation d'un JPanel personnalisé :
class CustomPanel extends JPanel { private BufferedImage image; public CustomPanel(BufferedImage image) { this.image = image; } @Override protected void paintComponent(Graphics g) { super.paintComponent(g); g.drawImage(image, 0, 0, this); } }
BufferedImage myPicture = ImageIO.read(new File("c:\bgd.png"));
CustomPanel picPanel = new CustomPanel(myPicture); window.add(picPanel, c);
Utilisation d'un JLabel :
JLabel picLabel = new JLabel(new ImageIcon(myPicture)); mainp.add(picLabel, c);
Considérations supplémentaires :
Exemple d'utilisation d'un JPanel personnalisé :
import java.awt.*; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; import javax.swing.*; public class BackgroundImageExample { public static void main(String[] args) { try { // Create the main window JFrame window = new JFrame("Window with Background Image"); window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); window.setSize(300, 250); window.setResizable(false); // Create the background image and CustomPanel BufferedImage image = ImageIO.read(new File("path/to/background.png")); CustomPanel picPanel = new CustomPanel(image); picPanel.setOpaque(true); // Add the CustomPanel to the main window window.add(picPanel); // Show the window window.setVisible(true); } catch (IOException e) { e.printStackTrace(); } } }
Exemple d'utilisation d'un JLabel :
import java.awt.*; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; import javax.swing.*; public class BackgroundImageExample { public static void main(String[] args) { try { // Create the main window JFrame window = new JFrame("Window with Background Image"); window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); window.setSize(300, 250); window.setResizable(false); // Create the background image and JLabel BufferedImage image = ImageIO.read(new File("path/to/background.png")); JLabel picLabel = new JLabel(new ImageIcon(image)); picLabel.setOpaque(true); // Add the JLabel to the main window window.add(picLabel); // Show the window window.setVisible(true); } catch (IOException e) { e.printStackTrace(); } } }
En implémentant l'une de ces approches, vous pouvez ajouter avec succès une image d'arrière-plan à vos JComponents.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!