JButtons的Java Swing绘画问题

时间:2018-04-18 06:26:56

标签: java swing jframe jpanel

我尝试做的是使用Swing创建桌面应用程序。我需要在我的框架中添加背景图像,并在某些特定位置添加一些按钮,这些按钮不应填充其内容区域。所以,这是我到目前为止所做的事情;

public class MainGUI extends JFrame {

  public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                MainGUI window = new MainGUI();
                window.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
  }


  public MainGUI() {
    setUndecorated(true);
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    this.setSize(screenSize);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    initialize();
  }


  private void initialize() {

    JPanel mainPanel = new JPanel() {
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            try {
                g.drawImage(new ImageIcon(ImageIO.read(new File("a.png"))).getImage(), 0, 0, null);
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    };

    mainPanel.setLayout(new BorderLayout());

    JButton btn1 = new JButton();
    btn1 .setAlignmentX(Component.CENTER_ALIGNMENT);
    btn1 .setContentAreaFilled(false);
    btn1 .setBorder(new EmptyBorder(0, 0, 0, 0));
    btn1 .setIcon(new ImageIcon("btn1.png"));

    JPanel rightButtonPanel = new JPanel();
    rightButtonPanel.setLayout(new BoxLayout(rightButtonPanel, BoxLayout.Y_AXIS));
    rightButtonPanel.add(btn1);

    mainPanel.add(rightButtonPanel, BorderLayout.EAST);

    this.setContentPane(mainPanel);

  }

}

当我这样做时,setContentAreaFilled(false)功能不起作用。我想它与绘画有关,但我不确定。有人可以帮我这个吗?

1 个答案:

答案 0 :(得分:0)

所以我拿了你的代码并修改了它。

主要:

  • 已添加btn1.setOpaque(false);
  • 并添加了rightButtonPanel.setBackground(Color.GREEN);

实施例

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;

public class MainGUI extends JFrame {

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    MainGUI window = new MainGUI();
                    window.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public MainGUI() {
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        initialize();
        pack();
    }

    private void initialize() {

        JPanel mainPanel = new JPanel() {
            @Override
            public Dimension getPreferredSize() {
                return new Dimension(400, 400);
            }

            @Override
            protected void paintComponent(Graphics g) {
                super.paintComponent(g);
            }
        };

        mainPanel.setBackground(Color.RED);

        mainPanel.setLayout(new BorderLayout());

        JButton btn1 = new JButton();
        btn1.setAlignmentX(Component.CENTER_ALIGNMENT);
        btn1.setContentAreaFilled(false);
        btn1.setOpaque(false);
        btn1.setBorder(new EmptyBorder(0, 0, 0, 0));
        btn1.setText("This is a test");

        JPanel rightButtonPanel = new JPanel();
        rightButtonPanel.setBackground(Color.GREEN);
        rightButtonPanel.setLayout(new BoxLayout(rightButtonPanel, BoxLayout.Y_AXIS));
        rightButtonPanel.add(btn1);

        mainPanel.add(rightButtonPanel, BorderLayout.EAST);

        this.setContentPane(mainPanel);

    }

}

这产生了

Filled

所以,这不是按钮(至少在这一点上)是错误的。

所以,我将rightButtonPanel.setBackground(Color.GREEN);更改为rightButtonPanel.setOpaque(false);并生成了

Not filled