gpt4 book ai didi

Java Swing JPanel 对象大小均与 JTextField 大小匹配

转载 作者:行者123 更新时间:2023-12-01 18:55:12 33 4
gpt4 key购买 nike

我遇到了一个不寻常的问题,JPanel 内的所有对象都采用 JTextField 的大小。即使我尝试强制其他对象的大小,它们仍然会将为文本字段指定的大小视为自己的大小。例如,我尝试用自己的方法设置单个面板,如下所示:

private JPanel setupID() {
JLabel projLbl = new JLabel("Project ID:");
JButton verifyBtn = new JButton("Verify ID");
projID = new JTextField(25);
verifyBtn.setToolTipText("Verifies that the entered ID is not already in use.");
JPanel theID = new JPanel(new GridLayout(1,0));
theID.add(projLbl);
theID.add(projID);
theID.add(verifyBtn);
return theID;
}

我最终得到的是一个看起来像这样的窗口... enter image description here正在加载的 JFrameframe; 调用了 frame.pack() 方法来自动调整帧大小。如果我在不同区域(例如西、中心、东)的 BorderLayout() 中创建各个对象,它们将按预期工作,但当它们加载到面板中时,它们的大小都会改 rebase 于 JTextField(25)。有什么想法吗?

最佳答案

正如 Code-Guru 和 asemax 所指出的。您似乎正在使用 GridLayout,它旨在利用可用空间在网格中均匀地布局组件。

尝试使用 GridBagLayout 之类的东西来代替...

enter image description here

public class BadLayout08 {

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

public BadLayout08() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception ex) {
}

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

public class TestPane extends JPanel {

public TestPane() {
setLayout(new GridBagLayout());
add(new JLabel("Project ID:"));
add(new JTextField(25));
add(new JButton("Verify ID"));
}

}

}

您可能会找到A Visual Guide to Layout Managers当您需要决定使用哪种布局时会有一些用处。

关于Java Swing JPanel 对象大小均与 JTextField 大小匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14225419/

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