Java 如何动态更改JTextbox中文本的大小

Java 如何动态更改JTextbox中文本的大小,java,swing,jakarta-ee,Java,Swing,Jakarta Ee,我有以下运行良好的代码,但我想知道是否有任何方法可以更改字体大小以填充JTextBox中的最大区域。当我在三个不同的主题上运行代码时,它会给我不同的结果 import java.awt.BorderLayout; import java.awt.FlowLayout; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JPanel; import javax.swing.Box; import j

我有以下运行良好的代码,但我想知道是否有任何方法可以更改字体大小以填充JTextBox中的最大区域。当我在三个不同的主题上运行代码时,它会给我不同的结果

import java.awt.BorderLayout;
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JPanel;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JLabel;
import java.awt.GridLayout;
import javax.swing.JTextField;
import javax.swing.border.TitledBorder;
import javax.swing.SwingConstants;
import javax.swing.JPasswordField;
import java.awt.Component;
public class NewLoginBox extends JDialog {

    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private final JPanel contentPanel = new JPanel();
    private JTextField userID;
    private JPasswordField passwordField;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        try {
            NewLoginBox dialog = new NewLoginBox();
            dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
            dialog.setVisible(true);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * Create the dialog.
     */
    public NewLoginBox() {
        setBounds(100, 100, 350, 220);
        getContentPane().setLayout(new BorderLayout());
        contentPanel.setBorder(new TitledBorder(null, "Sign In", TitledBorder.LEADING, TitledBorder.TOP, null, null));
        getContentPane().add(contentPanel, BorderLayout.CENTER);
        contentPanel.setLayout(new BoxLayout(contentPanel, BoxLayout.Y_AXIS));
        {
            JPanel titlePanel = new JPanel();
            contentPanel.add(titlePanel);
            titlePanel.setLayout(new BoxLayout(titlePanel, BoxLayout.Y_AXIS));
            {
                JLabel lblPleaseEnterYour = new JLabel("Welcome to Application. Please Sign In ");
                lblPleaseEnterYour.setAlignmentX(Component.CENTER_ALIGNMENT);
                lblPleaseEnterYour.setAlignmentY(Component.BOTTOM_ALIGNMENT);
                lblPleaseEnterYour.setHorizontalAlignment(SwingConstants.LEFT);
                titlePanel.add(lblPleaseEnterYour);
                titlePanel.add(Box.createVerticalStrut(15));
            }
        }
        {
            JPanel formPanel = new JPanel();
            contentPanel.add(formPanel);
            formPanel.setLayout(new GridLayout(0, 2, 5, 5));
            {
                JLabel lblUserId = new JLabel("User ID");
                formPanel.add(lblUserId);
            }
            {
                userID = new JTextField("", 15);
                formPanel.add(userID);
                userID.setColumns(10);
            }
            {
                JLabel lblPassword = new JLabel("Password");
                formPanel.add(lblPassword);
            }
            {
                passwordField = new JPasswordField();
                formPanel.add(passwordField);
            }
        }
        {
            JPanel buttonPane = new JPanel();
            buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
            getContentPane().add(buttonPane, BorderLayout.SOUTH);
            {
                JButton okButton = new JButton("OK");
                okButton.setActionCommand("OK");
                buttonPane.add(okButton);
                getRootPane().setDefaultButton(okButton);
            }
            {
                JButton cancelButton = new JButton("Cancel");
                cancelButton.setActionCommand("Cancel");
                buttonPane.add(cancelButton);
            }
            {
                JButton btnHelp = new JButton("Help");
                buttonPane.add(btnHelp);
            }
        }
    }

}
-这是一款外观和手感最好的产品

现在我想要的是,Jtextbox的大小应该根据其中的文本动态地改变。这样我们就可以拥有一致的外观和感觉。
谢谢 Ashish Tyagi

  • 不要对formPanel使用GridLayout。而是使用GridBagLayout
  • 或考虑使用第三方布局,例如.
  • 不要设置GUI的边界。相反,让布局管理器为您执行此操作
  • 在用组件填充顶层窗口并在显示它们之前,不要忘记在它们上调用
    pack()
比如说,

NewLoginBox.java:

import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;

import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JPanel;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JLabel;
import java.awt.GridLayout;
import javax.swing.JTextField;
import javax.swing.border.Border;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EmptyBorder;
import javax.swing.border.TitledBorder;
import javax.swing.SwingConstants;
import javax.swing.JPasswordField;
import java.awt.Component;

public class NewLoginBox extends JDialog {
   private static final long serialVersionUID = 1L;
   private final JPanel contentPanel = new JPanel();
   private JTextField userID;
   private JPasswordField passwordField;

   public static void main(String[] args) {
      try {
         NewLoginBox dialog = new NewLoginBox();
         dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
         dialog.pack();
         dialog.setLocationRelativeTo(null);
         dialog.setVisible(true);
      } catch (Exception e) {
         e.printStackTrace();
      }
   }

   public NewLoginBox() {
      //setBounds(100, 100, 350, 220);
      // getContentPane().setLayout(new BorderLayout());
      TitledBorder titledBorder = new TitledBorder(null, "Sign In",
            TitledBorder.LEADING, TitledBorder.TOP, null, null);
      int ebGap = 10;
      EmptyBorder emptyBorder = new EmptyBorder(ebGap, ebGap, ebGap, ebGap);
      Border compoundBorder = new CompoundBorder(titledBorder, emptyBorder);
      contentPanel.setBorder(compoundBorder );
      getContentPane().add(contentPanel, BorderLayout.CENTER);
      contentPanel.setLayout(new BoxLayout(contentPanel, BoxLayout.Y_AXIS));
      JPanel titlePanel = new JPanel();
      contentPanel.add(titlePanel);
      titlePanel.setLayout(new BoxLayout(titlePanel, BoxLayout.Y_AXIS));
      JLabel lblPleaseEnterYour = new JLabel(
            "Welcome to Application. Please Sign In ");
      lblPleaseEnterYour.setAlignmentX(Component.CENTER_ALIGNMENT);
      lblPleaseEnterYour.setAlignmentY(Component.BOTTOM_ALIGNMENT);
      lblPleaseEnterYour.setHorizontalAlignment(SwingConstants.LEFT);
      titlePanel.add(lblPleaseEnterYour);
      titlePanel.add(Box.createVerticalStrut(15));

      JPanel formPanel = new JPanel();
      contentPanel.add(formPanel);

      // formPanel.setLayout(new GridLayout(0, 2, 5, 5));
      ebGap = 7;
      formPanel.setBorder(BorderFactory.createEmptyBorder(ebGap, ebGap, ebGap, ebGap));
      formPanel.setLayout(new GridBagLayout());
      JLabel lblUserId = new JLabel("User ID");
      addWithGbc(formPanel, lblUserId, 0, 0);
      userID = new JTextField("", 15);
      addWithGbc(formPanel, userID, 1, 0);
      userID.setColumns(10);
      JLabel lblPassword = new JLabel("Password");
      addWithGbc(formPanel, lblPassword, 0, 1);
      passwordField = new JPasswordField();
      addWithGbc(formPanel, passwordField, 1, 1);
      JPanel buttonPane = new JPanel();
      buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
      getContentPane().add(buttonPane, BorderLayout.SOUTH);
      JButton okButton = new JButton("OK");
      okButton.setActionCommand("OK");
      buttonPane.add(okButton);
      getRootPane().setDefaultButton(okButton);
      JButton cancelButton = new JButton("Cancel");
      cancelButton.setActionCommand("Cancel");
      buttonPane.add(cancelButton);
      JButton btnHelp = new JButton("Help");
      buttonPane.add(btnHelp);
   }

   private void addWithGbc(Container container, JComponent component, int x,
         int y) {
      int hGap = 5;

      GridBagConstraints gbc = new GridBagConstraints();
      gbc.gridx = x;
      gbc.gridy = y;
      if (x % 2 == 0) {
         gbc.anchor = GridBagConstraints.WEST;
         gbc.insets = new Insets(hGap, 0, hGap, 20); // magic number!
         gbc.weightx = 1.0;
         gbc.weighty = 1.0;
         gbc.fill = GridBagConstraints.BOTH;
      } else {
         gbc.anchor = GridBagConstraints.EAST;
         gbc.insets = new Insets(hGap, 0, hGap, 0);
         gbc.weightx = 1.0;
         gbc.weighty = 0.0;
         gbc.fill = GridBagConstraints.HORIZONTAL;
      }
      container.add(component, gbc);
   }
}

和往常一样,我可以同意你的建议:-)+1that@Hovercraft关于同样的问题,我还有一件事要说,所以当我添加代码中提到的组件(当然是gridbaglayout)时,它们是正确对齐和显示的,但是当我通过addWithGbc()方法添加它们时只有用户名可见,其他组件不显示。有什么我没写的吗。