什么布局对这个Java UI有好处?

时间:2017-06-28 04:04:01

标签: java swing jframe layout-manager

确切地说,我正在尝试使用JFrame为 Newton的前向差异表构建UI。 **Newton Forward Difference table**

是否值得创建8 x 8标签的gridlayout和这样的(某些)文本字段?

public static void main(String[] args) {
    NewtonFwd ssf = new NewtonFwd();
    ssf.setVisible(true);
    ssf.setLayout(new GridLayout(8, 8, 2, 2));
    ssf.setSize(1400, 600);

}

public NewtonFwd() {
    Container c = getContentPane();
    JTextField[] xfields = new JTextField[6];       
    ...
    JTextField[] ydfields4 = new JTextField[2];
    c.add(new JLabel("x values"));
    c.add(new JLabel("y values"));
    // and so on...

https://pastebin.com/WbqZ7HFu处的完整代码)

我错过了什么?

0 个答案:

没有答案