java 对象调整大小 window 调整大小

java object resize on window resize

我必须在 window 调整大小时调整 JTable 等元素的大小。我一直在尝试这段代码,但它不能正常工作:

    table.setLocation(0, 23);
    Dimension siz = contentPane.getMaximumSize();
    table.setSize(siz.height, siz.width - 46);

它调整了我的 table 的大小,但它让它变得无穷无尽,这是我不想要的。此外,我想将滚动条连接到此 table,如果可能的话 - 将列宽设置为 precentage

您的主要问题(调整大小)更多地与您对表单编辑器的依赖有关,然后与 Swing 或 Java

有关

查看 Laying Out Components Within a Container 了解更多详情。

您似乎也没有使用 JScrollPane 来容纳 JTable。查看 How to Use Tables and How to Use Scroll Panes 了解更多详情

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.table.DefaultTableModel;

public class ResizeTest {

    public static void main(String[] args) {
        new ResizeTest();
    }

    public ResizeTest() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        private JTable table;
        private JButton historyButton;
        private JButton otherButton;

        public TestPane() {

            table = new JTable(new DefaultTableModel(10, 10));
            historyButton = new JButton("History");
            otherButton = new JButton("Other");

            setLayout(new BorderLayout());
            JPanel buttons = new JPanel(new FlowLayout(FlowLayout.LEFT));
            buttons.add(historyButton);
            buttons.add(otherButton);
            add(buttons, BorderLayout.NORTH);

            add(new JScrollPane(table));

            JPanel footers = new JPanel(new GridLayout(1, 2));
            JLabel left = new JLabel("Left");
            left.setHorizontalAlignment(JLabel.LEFT);
            JLabel right = new JLabel("Right");
            right.setHorizontalAlignment(JLabel.LEFT);
            footers.add(left);
            footers.add(right);

            add(footers, BorderLayout.SOUTH);
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(200, 200);
        }

    }

}