我不明白为什么我的文本字段会裂开,而不是给定的大小?有什么我想念的东西吗?或者我在想的问题是我施加的约束太小了?谢谢!
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class addEntry
{
public void addEntryFrame()
{
JFrame entryFrame = new JFrame("Passafe");
entryFrame.setSize(500,500);
entryFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
JPanel topPanel = new JPanel();
JLabel topHeader = new JLabel("Add New Entry: ");
topHeader.setFont(new Font("Ariel", Font.BOLD, 24));
topPanel.add(topHeader);
JPanel centerPanel = new JPanel(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.insets = new Insets(15,15,15,15);
JLabel name = new JLabel("Name: ");
JLabel username = new JLabel("Username: ");
JLabel password = new JLabel("Password: ");
JLabel description = new JLabel("Description: ");
JTextField nametf = new JTextField(20);
JTextField usernametf = new JTextField(20);
JTextField passwordtf = new JTextField(20);
JTextField descriptiontf = new JTextField(50);
gbc.gridx = 0;
gbc.gridy = 0;
centerPanel.add(name, gbc);
gbc.gridx = 1;
gbc.gridy = 0;
centerPanel.add(nametf, gbc);
gbc.gridx = 0;
gbc.gridy = 2;
centerPanel.add(username, gbc);
gbc.gridx = 1;
gbc.gridy = 2;
centerPanel.add(usernametf, gbc);
gbc.gridx = 0;
gbc.gridy = 3;
centerPanel.add(password, gbc);
gbc.gridx = 1;
gbc.gridy = 3;
centerPanel.add(passwordtf, gbc);
gbc.gridx = 0;
gbc.gridy = 4;
centerPanel.add(description, gbc);
gbc.gridx = 1;
gbc.gridy = 4;
centerPanel.add(descriptiontf, gbc);
JPanel bottomPanel = new JPanel();
JButton saveEntryButton = new JButton("SAVE");
bottomPanel.add(saveEntryButton);
entryFrame.add(topPanel, BorderLayout.NORTH);
entryFrame.add(centerPanel, BorderLayout.CENTER);
entryFrame.add(bottomPanel, BorderLayout.SOUTH);
entryFrame.setVisible(true);
}
}
最佳答案
不要在entryFrame.setSize(500, 500);
方法的末尾使用entryFrame.pack();
而不是使用addEntryFrame()
。