如何使jPanel半透明?

时间:2014-07-03 16:39:27

标签: java swing user-interface jpanel

我想添加一个半透明的jPanel。但是,放置在jPanel内部的其他组件(如按钮和标签)应以100%不透明度显示。我正在使用netbeans来设计GUI。通常我将摆动组件拖放到调色板中以设计GUI(我不对它们进行编码)。我无法在属性窗口中看到任何属性来实现此目的。请帮我。由于我是java新手,请给我一个详细的答案。提前谢谢。

2 个答案:

答案 0 :(得分:7)

你可以使用 JPanel.setBackground(Color bg); 使面板半透明。什么是颜色的属性。 您可以使用Alpha值构造颜色以设置颜色的透明度。

panel.setBackground(new Color(213,134,145,123));

最后一个参数是实际的alpha值,您可以调整它以查看效果。

以下是代码:

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;

import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;

public class PanelTest {
    public static void main(String[] args) {

        Runnable runnable = new Runnable() {
            @Override
            public void run() {
                PanelTest test = new PanelTest();
                test.createUI();
            }
        };
        SwingUtilities.invokeLater(runnable);
    }

    public void createUI(){
        JFrame frame = new JFrame("Panel Test");

        JPanel panel = new JPanel();

        panel.setBackground(new Color(213, 134, 145, 123));
        JButton button = new JButton("I am a button");

        JLabel label = new JLabel("I am a label");
        label.setFont(new Font("Arial", Font.BOLD, 15));

        JTextField textField = new JTextField();

        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        panel.add(button);
        panel.add(Box.createVerticalStrut(20));
        panel.add(label);
        panel.add(Box.createVerticalStrut(20));
        panel.add(textField);

        panel.setBorder(BorderFactory.createEmptyBorder(30, 30, 30, 30));

        BottomPanel buttomPanel = new BottomPanel();
        buttomPanel.add(panel);
        frame.add(buttomPanel,BorderLayout.CENTER);

        frame.setResizable(false);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    @SuppressWarnings("serial")
    class BottomPanel extends JPanel{
        @Override
        protected void paintComponent(Graphics g) {
            for (int y = 0; y < 200; y = y + 20) {
                g.drawString("I am the string on the bottom", 5, y);
            }
        }
    }
}

这是效果,希望它可以帮助你。

enter image description here

答案 1 :(得分:1)

您可以像往常一样使用拖放创建jPanel,然后更改面板的颜色并使其透明或半透明,您可以使用此代码:

panel.setBackground(new Color(0.0f, 0.0f, 0.0f, 0.5f));

您可以通过更改Color构造函数的前三个参数来更改颜色,这三个参数代表RGB,您可以通过更改第四个参数来更改透明度,第四个参数是颜色的alpha值。