2

I switched to the MigLayout and when I drag the window smaller the components resize, but when I drag it bigger than the size when I start the program, they don't get bigger. How do I make it so it resizes bigger and smaller?

public SpriteEditor() {
    SubstanceColorChooserUI col = new SubstanceColorChooserUI();
    while (mode == 0);
    setResizable(true);
    setTitle("DawnGuard Index 32/34 Editor");
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setSize(483, 374);
    setLocationRelativeTo(null);
    contentPane = new JPanel();
    contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    setContentPane(contentPane);

    textField = new JTextField();
    textField.setColumns(10);

    JButton btnLoadCache = new JButton("Load cache");
    btnLoadCache.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            try {
                String loc = textField.getText();
                if (loc.equals("")) {
                    JOptionPane.showMessageDialog(SpriteEditor.this, "Please specify a location for the cache.", "Unable to load", JOptionPane.ERROR_MESSAGE);
                    return;
                }
                if (!loc.endsWith("\\"))
                    loc = loc + "\\";
                cache = new Store(loc);
                loadImages();
            } catch (Exception e) {
                JOptionPane.showMessageDialog(SpriteEditor.this, "Cache failed to initialize.\n" + e.getMessage(), "Unable to load", JOptionPane.ERROR_MESSAGE);
            }
        }
    });

    JSplitPane splitPane = new JSplitPane();
    splitPane.setDividerLocation(150);
    splitPane.setContinuousLayout(true);

    JPanel panellie = new JPanel();
    panellie.setLayout(new BorderLayout(0, 0));
    panel = new ImagePanel(null);

    scrollPane_1 = new JScrollPane();
    panellie.add(scrollPane_1, "Center");

    scrollPane_1.setViewportView(panel);
    splitPane.setRightComponent(panellie);

    JPanel panel_1 = new JPanel();
    splitPane.setLeftComponent(panel_1);
    panel_1.setLayout(new BorderLayout(0, 0));

    JScrollPane scrollPane = new JScrollPane();
    panel_1.add(scrollPane, BorderLayout.CENTER);

    model = new DefaultListModel<ListedImage>();
    list = new JList<ListedImage>(model);
    list.addListSelectionListener(new ListSelectionListener() {
        public void valueChanged(ListSelectionEvent arg0) {
            if (arg0.getValueIsAdjusting())
                return;
            ListedImage img = list.getModel().getElementAt(list.getSelectedIndex());
            panel.setImage(img.getImage());
        }
    });
    scrollPane.setViewportView(list);

    progressBar = new JProgressBar();
    progressBar.setStringPainted(true);
    progressBar.setDoubleBuffered(true);

    contentPane.setLayout(new MigLayout("", "[328px][13px][112px]", "[23px][279px][14px]"));
    contentPane.add(textField, "cell 0 0,growx,aligny center");
    contentPane.add(btnLoadCache, "cell 2 0,growx,aligny top");
    contentPane.add(splitPane, "cell 0 1 3 1,grow");
    contentPane.add(progressBar, "cell 0 2 3 1,grow");

}
4

2 回答 2

1

在布局定义中,您有:

contentPane.setLayout(new MigLayout("", "[328px][13px][112px]", "[23px][279px][14px]"));

好吧,您可以尝试告诉布局填充布局约束fill,现在您应该告诉当面板随着行/列约束增长时应该增长哪些列和行grow。所以...

contentPane.setLayout(new MigLayout("fill", "[328px, grow][13px][112px]", "[23px][279px, grow][14px]"));
于 2013-11-05T21:29:39.033 回答
0

我猜最大尺寸太小了,您正在尝试设置比对象的最大尺寸更大的尺寸。尝试设置最大宽度和最大高度。祝你好运。

于 2012-07-19T21:58:27.883 回答