gpt4 book ai didi

java - 每次运行代码时字段的其他位置

转载 作者:行者123 更新时间:2023-12-02 10:20:34 26 4
gpt4 key购买 nike

我的应用程序陷入困境。每次我运行我的代码时,我的字段例如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();
}
}
<小时/>

我有:

<小时/>

First

<小时/>

或者

<小时/>

Second

<小时/>

我除了什么:

<小时/>

Second

<小时/>

感谢您的每一次帮助。问:

最佳答案

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

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

JTextField textField = new JTextField(15);

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

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

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

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

关于java - 每次运行代码时字段的其他位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54364801/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com