【问题标题】:GridBagLayout JavaGridBagLayout Java
【发布时间】:2013-12-18 17:04:07
【问题描述】:

您好,我再次输入我的原始代码,只是为了让您了解我在谈论 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();

    }
}
}

【问题讨论】:

  • ??? img = GridBagConstrainsts.SOUTH

标签: java swing gridbaglayout


【解决方案1】:

为此,您需要使用GridBagConstraintsanchorweighty 属性。

在下一个示例中,我将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);
    }

}

如果您需要通过组件填充所有水平空间,请添加下一个:

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

对于Image,您可以在我的示例中使用JLabel 而不是JTextField

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

【讨论】:

    【解决方案2】:

    您不能将图像直接添加到 JPanel。您可以做的是将图像设置为 JPanel 或 JLabel 的图像图标,并将其添加到您要制作的任何内容中。

    【讨论】:

      猜你喜欢
      • 2012-10-10
      • 2013-03-28
      • 2011-06-17
      • 2017-11-28
      • 1970-01-01
      • 2015-12-02
      • 1970-01-01
      • 1970-01-01
      • 2014-11-23
      相关资源
      最近更新 更多