您好,我一直在关注如何将背景图像添加到 JFrame 的多个指南。然而,当运行我的程序时,背景变成了只有一点背景图像显示在左下角和下边。
这是我当前的代码:
private int width = 1280;
private int height = 720;
private String title = "Creation - " + Component.versionID + " Launcher";
private JPanel window = new JPanel();
private JFrame frame = new JFrame();
private JLabel name, version;
private JButton play, options, changelog, quit;
private Rectangle rPlay, rOptions, rChangelog, rQuit, rName, rVersion;
private int buttonWidth = 200;
private int buttonHeight = 80;
public Menu (Component component) {
frame.setTitle(title);
frame.setSize(new Dimension(width, height));
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.add(component);
frame.getContentPane().add(window);
frame.setResizable(false);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.setIconImage(new ImageIcon("res/icon.png").getImage());
setLayout(new BorderLayout());
JLabel background = new JLabel(new ImageIcon("res/background.png"));
frame.add(background);
background.setLayout(new FlowLayout());
window.setLayout(null);
drawButtons();
frame.repaint();
frame.pack();
}
private void drawButtons() {
name = new JLabel("Creation");
rName = new Rectangle((width/2) - (buttonWidth/2) + 60, 20, buttonWidth, buttonHeight);
name.setBounds(rName);
window.add(name);
play = new JButton("Play");
rPlay = new Rectangle((width/2) - (buttonWidth/2), 250, buttonWidth, buttonHeight);
play.setBounds(rPlay);
window.add(play);
options = new JButton("Options");
rOptions = new Rectangle((width/2) - (buttonWidth/2), 350, buttonWidth, buttonHeight);
options.setBounds(rOptions);
window.add(options);
changelog = new JButton("View change-log");
rChangelog = new Rectangle((width/2) - (buttonWidth/2), 450, buttonWidth, buttonHeight);
changelog.setBounds(rChangelog);
window.add(changelog);
quit = new JButton("Quit");
rQuit = new Rectangle((width/2) - (buttonWidth/2), 550, buttonWidth, buttonHeight);
quit.setBounds(rQuit);
window.add(quit);
play.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Component component = new Component();
frame.dispose();
component.start();
}
});
options.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
}
});
changelog.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
}
});
quit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
});
}
(如您所见)我的 JFrame 大小为 1280x720。这与背景图像的大小相同,所以我看不到任何问题。如果有人可以帮助我编辑我的代码或给我指点,我只是在寻找显示在按钮后面的背景图像。