我切换到了MigLayout,当我拖动窗口时,组件调整大小,但是当我将它拖动到比启动程序时的大小时,它们不会变大。如何制作它以便调整大小?
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");
}
答案 0 :(得分:1)
在布局定义中,您有:
contentPane.setLayout(new MigLayout("", "[328px][13px][112px]", "[23px][279px][14px]"));
你可以尝试告诉布局填充布局约束fill
,现在你应该告诉我们,当面板以行/列约束{{1}增长时,列和行应该增长}}。所以......
grow
答案 1 :(得分:0)
我猜最大尺寸太小,你试图设置一个比对象最大尺寸更大的尺寸。尝试设置最大宽度和最大高度。祝你好运。