3

是我的代码:我取出了一些我认为没有必要的东西。我可能也拿出了一些括号,但我只是想展示我拥有的内容。

发生的情况是,当我运行程序时,背景图像会绘制(它是资源中的 PNG),并且只出现一个按钮(我的 PLAY 按钮),这是第一个按钮 - 它是自动选择的。

我实际上有四个按钮,但我的代码中只包含了 PLAY 和 INSTRUCTIONS。除非我将鼠标悬停在它们上面,否则其他三个不会出现。我知道paint方法可能有点奇怪,但我不知道如何解决它。

如果我选择一个不同的按钮并最小化窗口然后再次打开它,则该选定的按钮是唯一出现的按钮。我必须将鼠标悬停在其他按钮上才能出现。

我也添加super.paint()了绘画方法,我得到了所有按钮,但背景是灰色的。我认为问题在于super.paint()绘制了我所有的按钮,并且g.drawImage(bg, 0, 0, null)只绘制了我的背景,如果不绘制另一个,我就无法做到这一点。

对不起,如果这是一团糟。我是 Java 新手,我很难清楚地表达我想说的话。

public class MainMenu extends JFrame {

    private JPanel contentPane;

    /**
     * Launch the application.
     */

    //variables
    public static Image bg;

    public static void main(String[] args) {

        MainMenu mainFrame = new MainMenu();
        mainFrame.setSize(FRAME_WIDTH, FRAME_HEIGHT);
        mainFrame.setResizable(false);
        mainFrame.setLocationRelativeTo(null);
        mainFrame.setTitle ("Zumby");
        mainFrame.setLayout(null);

        // Loads the background image and stores in bg object.
        try {
            bg = ImageIO.read(new File("zumby.png"));
        } catch (IOException e) {
        }
        mainFrame.setVisible(true);
    }

    /**
     * Overrides the paint method.
     * MONDAY
     */
     public void paint(Graphics g)
     {
        // Draws the img to the BackgroundPanel.
        System.out.println("paint");
        g.drawImage(bg, 0, 0, null);
     }

    /**
     */
    public MainMenu() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 800, 500);
        contentPane = new JPanel();
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        contentPane.setOpaque(false);
        setContentPane(contentPane);
        contentPane.setLayout(null);

        //create buttons
        JButton btnPlay = new JButton("PLAY");
        btnPlay.setBackground(Color.BLACK);
        btnPlay.setForeground(Color.WHITE);
        btnPlay.setFont(font);
        btnPlay.setBorder(border);
        btnPlay.setFocusPainted(false);

        //if "Play" is clicked

        btnPlay.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent click) {
                setVisible(false);
                new GamePlay(); //opens up GamePlay window
            }
        });
        btnPlay.setBounds(600, 64, 141, 61);
        contentPane.add(btnPlay);

        JButton btnInstructions = new JButton("INSTRUCTIONS");

        btnInstructions.setBounds(600, 160, 141, 61);
        btnInstructions.setBackground(Color.BLACK);
        btnInstructions.setFocusPainted(false);
       // btnInstructions.setEnabled(true);

        contentPane.add(btnInstructions);
        repaint();
        pack(); 
        setVisible(true);

    }

}
4

4 回答 4

3

Swing 使用“分层”概念进行绘画......

paint调用paintComponent,paintBorderpaintChildren. 通过覆盖paint和调用失败super.paint,您阻止了组件绘制它的各个层。

在 Swing 中,最好使用paintComponent提供自定义绘制,它允许您在可能添加到组件的任何其他组件下方绘制。

在此处输入图像描述

public class TestPaint01 {

  public static void main(String[] args) {
    new TestPaint01();
  }

  public TestPaint01() {
    EventQueue.invokeLater(new Runnable() {
      @Override
      public void run() {
        try {
          UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (Exception ex) {
        }

        JFrame frame = new JFrame("Test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(new TestPane());
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);

      }
    });
  }

  public class TestPane extends JPanel {

    private Image backgroundImage;

    public TestPane() {
      try {
        BufferedImage background = ImageIO.read(new File("/path/to/image.jpg"));
        //backgroundImage = background.getScaledInstance(-1, background.getHeight() / 4, Image.SCALE_SMOOTH);
        backgroundImage = background;
      } catch (IOException ex) {
        ex.printStackTrace();
      }
      setLayout(new GridBagLayout());
      add(new JButton("Hello"));
    }

    @Override
    public Dimension getPreferredSize() {
      return backgroundImage == null ? super.getPreferredSize() : new Dimension(backgroundImage.getWidth(this), backgroundImage.getHeight(this));
    }

    @Override
    protected void paintComponent(Graphics g) {
      super.paintComponent(g);
      int x = (getWidth() - backgroundImage.getWidth(this)) / 2;
      int y = (getHeight() - backgroundImage.getHeight(this)) / 2;
      g.drawImage(backgroundImage, x, y, this);
    }

  }

}

您可能会发现A Closer look at the Paint Mechanism and Painting in AWT 和 Swing提供了丰富的信息。

于 2013-01-21T01:29:55.663 回答
2

我认为这是因为您正在覆盖绘画方法。最好覆盖重绘,然后调用 super.repaint(); 像这样:

public void repaint(Graphics g)
        {
             super.repaint(g);
         // Draws the img to the BackgroundPanel.
             System.out.println("paint");
           g.drawImage(bg, 0, 0, null);
        }

然后组件也被重绘。

但是,如果您只想将图像显示为背景,请参见此处。

于 2013-01-20T17:08:11.013 回答
2

您正在压倒一切paint(),但不要调用super.paint(). 所以JFrame的paint()方法实现完成的组件的正常绘制不会被执行。

于 2013-01-20T17:26:01.220 回答
2

由于您使用的是 Swing 和JFrame用于覆盖的绘画机制paintComponentpaint因此通常与 applet 或 AWT 一起使用。

于 2013-01-20T18:03:05.887 回答