当我运行代码时,它只会打开一个空窗口,我也很重要,无论什么是必要的
代码的相关部分:
public class Game extends JFrame implements ActionListener,KeyListener{
private JLabel background;
....
public Game(){
background=new JLabel(new ImageIcon("/graphics/board.gif"));
...
this.add(background);
this.setSize(800,600);
this.setVisible(true);...
我尝试将 JLabel 添加到 JPanel,然后将其添加到框架中,但它仍然在窗口中不显示任何内容