簡體   English   中英

GridBagLayout Java

[英]GridBagLayout Java

再次嗨,我已經輸入了原始代碼,只是為了讓您看到我正在為GridBagConstrainsts談論的內容,這就是我試圖將每個圖像緊緊貼在面板的南部。

package prototype;

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

import javax.swing.WindowConstants;

import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import javax.imageio.ImageIO;

import javax.swing.ImageIcon;
import javax.swing.JCheckBox;
//Declare the class which extends JFrame and
//implements ActionListener to enable bottons to respond whenever clicked or selected
public class Master extends JFrame implements ActionListener {

    //create the bottons visible by the user
    JButton check = new JButton("");
    JButton playList = new JButton("");
    JButton update = new JButton("");
    JButton quit = new JButton("");
    JCheckBox tick = new JCheckBox("Tick");

    JPanel top = new JPanel();

    public static void main(String[] args) {

        //declare object of the class
        Master jf = new Master();
    }

    public Master() {
        setLayout(new BorderLayout());
        setSize(1050, 400);
        setTitle("Master");

        // close application only by clicking the quit button
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        //show the frame in the middle of the screen when run
        setLocationRelativeTo(null);

        top.add(new JLabel("Select an option by clicking one of the buttons below"));
        add("North", top); // add the text above to the upper part of the frame (North)
        JPanel bottom = new JPanel();
        bottom.setLayout(new GridBagLayout());
        bottom.add(check);
        check.addActionListener(this);
        bottom.add(playList);
        playList.addActionListener(this);
        bottom.add(update);
        update.addActionListener(this);
        bottom.add(quit);
        quit.addActionListener(this);
        add("South", bottom);

        //make the frame non resizable but visible
        setResizable(true);
        setVisible(true);

        try{
       Image  img = ImageIO.read(getClass().getResource("gui/Exit.png"));
       Image resize = img.getScaledInstance(290, 180, 18);
       quit.setIcon(new ImageIcon(resize));
       img = (bottom, new JLabel("NAME"), 0,0,1,1, GridBagConstraints.SOUTH);


        }catch(Exception e){
        }
        try{
       Image  img = ImageIO.read(getClass().getResource("gui/Untitled.png"));
       Image resize = img.getScaledInstance(290, 180, 18);
       check.setIcon(new ImageIcon(resize));

        }catch(Exception e){
        }
        try{
       Image  img = ImageIO.read(getClass().getResource("gui/CPL.png"));
       Image resize = img.getScaledInstance(290, 180, 18);
       playList.setIcon(new ImageIcon(resize));

        }catch(Exception e){
        }
        try{
       Image  img = ImageIO.read(getClass().getResource("gui/UpdateLib.png"));
       Image resize = img.getScaledInstance(290, 180, 18);
       update.setIcon(new ImageIcon(resize));

        }catch(Exception e){
        }

    }

    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == check) {
            new CheckLibrary();
        } else if (e.getSource() == update) {
            new UpdateLibrary();
        } else if (e.getSource() == quit) {
            System.exit(0);
        } else if (e.getSource() == playList)   {
            new CreatePlaylist();

    }
}
}

為此,您需要使用GridBagConstraints anchorweighty屬性。

在下一個示例中,我將JTextField設置為南部:

import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;

import javax.swing.JFrame;
import javax.swing.JTextField;

public class Example extends JFrame {

    public Example (){
        JTextField f = new JTextField(20);

        setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();
        c.anchor = GridBagConstraints.SOUTHEAST;
        c.weighty = 1;
        add(f,c);
    }

    public static void main(String...strings ){
        Example e = new Example();
        e.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        e.pack();
        e.setLocationRelativeTo(null);
        e.setVisible(true);
    }

}

如果需要按組件填充所有水平空間,請添加next:

c.weightx = 1;
c.fill = GridBagConstraints.HORIZONTAL;

在此處輸入圖片說明

對於Image ,在我的示例中可以使用JLabel而不是JTextField

JLabel l = new JLabel(new ImageIcon(getClass().getResource(PATH_TO_IMAGE)));

您不能將圖像直接添加到JPanel。 相反,您可以做的是將圖像設置為JPanel或JLabel的圖像圖標,然后將其添加到要創建的圖像中。

暫無
暫無

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

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