每次我 运行 代码时字段的其他放置

Other placement of fields everytime i run the code

我的申请卡住了。每次我 运行 我的代码,我的字段,例如fromTextField 曾经有宽度 180 其他时候我的宽度 private static final Integer widthField = 232.


代码:


package gui;

import javax.swing.*;
import java.awt.*;

public class MailGui extends JFrame {
    private static final Integer widthField = 232;

private MailGui() {
        JPanel northPanel = new JPanel();
        northPanel.setLayout(new GridLayout(5, 5));

        JLabel fromLabel = new JLabel("From: ", SwingConstants.LEFT);
        JLabel passwdLabel = new JLabel("Password: ", SwingConstants.LEFT);
        JLabel toLabel = new JLabel("To: ", SwingConstants.LEFT);
        JLabel subjectLabel = new JLabel("Subject: ", SwingConstants.LEFT);
        JLabel textLabel = new JLabel("Content: ", SwingConstants.LEFT);

        JTextField fromTextField = new JTextField();

        JTextField toTextField = new JTextField();
        JPasswordField passwdPasswordField = new JPasswordField();
        JTextField subjectTextField = new JTextField();
        JTextArea textArea = new JTextArea(8, 30);

        JButton sendButton = new JButton("Send");

        textArea.setLineWrap(true);

        northPanel.add(fromLabel);
        northPanel.add(fromTextField);

        northPanel.add(passwdLabel);
        northPanel.add(passwdPasswordField);

        northPanel.add(toLabel);
        northPanel.add(toTextField);

        northPanel.add(subjectLabel);
        northPanel.add(subjectTextField);

        northPanel.add(textLabel);
        northPanel.add(textArea);

        this.add(northPanel, BorderLayout.NORTH);

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

        JPanel southPanel = new JPanel();
        southPanel.add(sendButton);

        add(southPanel, BorderLayout.SOUTH);

        this.pack();

        this.setDefaultCloseOperation(EXIT_ON_CLOSE);
        this.setVisible(true);
        this.setResizable(false);


        fromTextField.setBounds(textArea.getX() + 100, 0, widthField, 19);
        passwdPasswordField.setBounds(textArea.getX() + 100, 19, widthField, 19);
        toTextField.setBounds(textArea.getX() + 100, 38, widthField, 19);
        subjectTextField.setBounds(textArea.getX() + 100, 57, widthField,         19);

    }

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

我有:





我除了:



感谢您的帮助。问

在GUI合成结束时调用pack()一次确定布局

不幸的是,几何图形对 textArea 的依赖性。把它也放在布局中。

有不错的 GUI 编辑器和更复杂的布局管理器。

调用 setBounds() 方法不执行任何操作。布局管理器将根据布局管理器的规则覆盖 size/location。在 GridLayout 的情况下,所有组件的大小都将调整为最大组件的首选大小,或者随着框架大小的变化,每个单元格将调整以填充框架中可用的 space。

当您创建 JTextField 时,代码应该类似于:

JTextField textField = new JTextField(15);

这将允许文本字段根据文本字段的字体确定自己的首选大小以显示 15 "W" 个字符。

然后布局管理器可以更好地确定每个组件的大小

如果您希望标签和文本字段的宽度不同,那么您需要使用不同的布局管理器。可能是一个 GridBagLayout。阅读 How to Use GridBagLayout 上的 Swing 教程以获取更多信息和示例。

请注意,教程示例向您展示了如何在事件调度线程 (EDT) 上创建 GUI。