GridBagLayout中的JTextArea包装太早

时间:2019-04-17 17:40:44

标签: java swing dialog jtextarea gridbaglayout

名为JTextArea的{​​{1}}占据了其容器txtaObservation的五个水平槽。它的文字在到达名为GridBagLayout的标签下面的第五个插槽时应自动换行,但是它换行的时间太快,大约在第一个插槽中。如何将其包裹在正确的插槽上?

JDViewCustomer.java

lblObservationLimit

CustomerData.java

package test2;

import java.awt.Color;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.util.Objects;

import javax.swing.BoxLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EmptyBorder;
import javax.swing.border.LineBorder;

public class JDViewCustomer extends javax.swing.JDialog {

    private static final long serialVersionUID = 1L;

    private JTextArea txtaObservation;
    private JPanel panelCustomerData;

    private final CustomerData customerData;
    private JLabel lblObservationLimit;


    public JDViewCustomer(java.awt.Frame parent, boolean modal, CustomerData customerData) {
        super(parent, modal);
        this.customerData = Objects.requireNonNull(customerData);

        getContentPane().setLayout(new BoxLayout(getContentPane(), BoxLayout.Y_AXIS));

        layoutCustomerDataSection();
        addCustomerData();

        initComponents();
    }

    public void layoutCustomerDataSection() {
        panelCustomerData = new JPanel();
        panelCustomerData.setBorder(new CompoundBorder(new LineBorder(new Color(0, 0, 0), 1, true), new EmptyBorder(10, 10, 10, 10)));
        panelCustomerData.setBackground(Color.WHITE);

        getContentPane().add(panelCustomerData);

        GridBagLayout gbl_panelCustomerData = new GridBagLayout();
        gbl_panelCustomerData.columnWidths = new int[]{58, 199, 38, 102, 27, 138, 0};
        gbl_panelCustomerData.rowHeights = new int[]{0, 14, 0};
        gbl_panelCustomerData.columnWeights = new double[]{0.0, 0.0, 0.0, 0.0, 0.0, 0.0, Double.MIN_VALUE};
        gbl_panelCustomerData.rowWeights = new double[]{0.0, 0.0, Double.MIN_VALUE};
        panelCustomerData.setLayout(gbl_panelCustomerData);

        lblObservationLimit = new JLabel("Observation limit");
        GridBagConstraints gbc_lblObservationLimit = new GridBagConstraints();
        gbc_lblObservationLimit.insets = new Insets(0, 0, 5, 0);
        gbc_lblObservationLimit.gridx = 5;
        gbc_lblObservationLimit.gridy = 0;
        panelCustomerData.add(lblObservationLimit, gbc_lblObservationLimit);

        txtaObservation = new JTextArea("Observation text");
        txtaObservation.setFont(new Font("Tahoma", Font.PLAIN, 11));
        txtaObservation.setLineWrap(true);
        txtaObservation.setWrapStyleWord(true);
        GridBagConstraints gbc_txtaObservation = new GridBagConstraints();
        gbc_txtaObservation.gridwidth = 5;
        gbc_txtaObservation.anchor = GridBagConstraints.NORTHWEST;
        gbc_txtaObservation.gridx = 1;
        gbc_txtaObservation.gridy = 1;
        panelCustomerData.add(txtaObservation, gbc_txtaObservation);
    }

    public void addCustomerData() {
        txtaObservation.setText(customerData.getObservation());
    }

    private void initComponents() {

        setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
        setTitle("View customer");

        pack();
        setLocationRelativeTo(getParent());
    }
}

Test2.java

package test2;

public class CustomerData {

    private final String observation;

    public CustomerData(String observation) {
        this.observation = observation;
    }

    public String getObservation() {
        return observation;
    }
}

1 个答案:

答案 0 :(得分:1)

对于JDViewCustomer.java尝试此操作-注释标记为“ // kwb”。直到现在我才意识到这是非正式的回答!

o+x