簡體   English   中英

如何讓JComponents背景透明?

[英]How to exactly make JComponents background transparent?

我想弄清楚有兩件事。 首先,我想弄清楚如何使Jcomponent背景透明。 將JPanel放入另一個顏色設置為背景的JPanel時,在另一個JPanel中設置的JPanel有一個白色背景,我似乎無法擺脫它。 我嘗試使用firstpanel.setOpache函數並重新繪制,但它沒有做任何事情。

其次,我注意到將JPanel放在另一個JPanel中的另一個JPanel壓縮它的大小。 下面的圖片將顯示我想要描述的內容。 我想知道如何避免壓縮JPanel大小,並且仍然可以將其放在其他JPanel的兩個級別中。 下面的代碼是我正在練習的。

import javax.swing.*;
import java.awt.*;


public class LearningFrame extends JFrame {

private JLabel userLabel;

private LearningFrame(){
    JPanel backGroundPanel = new JPanel();
    JPanel mainPanel = new JPanel();
    JPanel firstPanel = new JPanel();
    JPanel secondPanel = new JPanel();

    userLabel = new JLabel("User");
    userLabel.setFont(new Font("Arial",1 ,24));

    backGroundPanel.setBackground(new Color(247,211,53));
   // backGroundPanel.setLayout(new BoxLayout(backGroundPanel,BoxLayout.Y_AXIS));

    setContentPane(backGroundPanel);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(1200,800);
    setLocationRelativeTo(null);

    //backGroundPanel.setLayout(null);
    mainPanel.setLayout(new GridLayout(1,2));

    firstPanel.setLayout(new FlowLayout(FlowLayout.CENTER));
    secondPanel.setLayout(new BoxLayout(secondPanel,BoxLayout.Y_AXIS));

   // firstPanel.setBackground(new Color(211,43,185));
    secondPanel.setBackground(new Color(34,233,44));


    JButton button = new JButton("Click");
    JButton button2 = new JButton("Click");
    JButton button3 = new JButton("Click");
    JButton button4 = new JButton("Click");


    firstPanel.add(button);
    firstPanel.add(button2);
    firstPanel.add(userLabel);
    secondPanel.add(button3);
    secondPanel.add(button4);

    mainPanel.add(firstPanel);
    mainPanel.add(secondPanel);

    backGroundPanel.add(mainPanel);


    setVisible(true);

}

public JPanel logPanel() {

    JPanel logInPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));

    JTextField userTextField = new JTextField(14);
    JTextField passTextField = new JTextField(14);


    userLabel = new JLabel("Username: ");
    JLabel passLabel = new JLabel("Password: ");
    passLabel.setFont(new Font("Arial", Font.BOLD, 24));
    userLabel.setFont(new Font("Arial", Font.BOLD, 24));
    logInPanel.add(userLabel);
    logInPanel.add(userTextField);
    logInPanel.add(passLabel);
    logInPanel.add(passTextField);

    logInPanel.setOpaque(true);
    logInPanel.repaint();

    return logInPanel;
}

public static void main(String[] args){

    LearningFrame x = new LearningFrame();
}

}

這個圖像是主JPanel中的兩個JPanel,JPanels擴展並且沒有壓縮

此圖像是JPanel中的兩個JPanel,位於另一個JPanel中,兩個JPanel是壓縮的。

只是用

firstPanel.setOpaque(false);

這將使組件的背景不可見,但您仍然可以看到位於其中的任何組件。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM