使用null布局的JComponent背景颜色?

时间:2016-02-16 23:30:10

标签: java swing layout

只是一个简短的问题:当使用null布局将JFonent直接添加到JFrame时,是否可以为JComponent添加背景颜色?组件的大小和位置由setBounds()设置,我知道使用此设置不会显示背景颜色。 (我知道你应该总是使用布局管理器,但在这种情况下我想防止这种情况。)

1 个答案:

答案 0 :(得分:1)

默认情况下,

JComponent是透明的,您需要更改其opaque州或使用JPanel

import java.awt.Color;
import java.awt.EventQueue;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.border.LineBorder;

public class Test {

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

    public Test() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                TestPane pane = new TestPane();
                pane.setBounds(10, 10, 100, 100);

                JFrame frame = new JFrame("Testing");
                frame.setLayout(null); // This is bad, but it proofs my point
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(pane);
                frame.setSize(200, 200);
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JComponent {

        public TestPane() {
            addMouseListener(new MouseAdapter() {
                @Override
                public void mouseClicked(MouseEvent e) {
                    setOpaque(!isOpaque());
                    repaint();
                }
            });
            setBackground(Color.BLUE);
            setBorder(new LineBorder(Color.RED));
        }

    }

}

null布局是坏消息,我不宽恕它们,你应该避免使用它们,上面的例子只是证明了需要JComponent s opaque状态待改变

Why is it frowned upon to use a null layout in SWING?很好地解释了为什么要避免使用null布局。

如果您想要更多控制权,请自行编写。