Переместите метку и текстовое поле слева в Gridbaglayout

StackOverflow https://stackoverflow.com/questions/4721971

  •  12-10-2019
  •  | 
  •  

Вопрос

Может ли кто -нибудь из вас, хорошие люди, чтобы помочь мне, я просто не могу переместить txtipaddress и метку IP -адреса слева, он сейчас вырезан. Я попытался экспериментировать с Weewx от 0 до 1, iPadx, но это не помогло. Это моя функция для красной панели. Любая помощь, пожалуйста?

alt text

pnlCom=new JPanel();
        pnlCom.setBackground(Color.red);
        pnlCom.setSize(460,160);
        pnlCom.setLocation(10, 60);

        add(pnlCom);
        //add(pnlTcp);
        add(pnlCommon);
        GridBagLayout gb=new GridBagLayout();
        GridBagConstraints gc=new GridBagConstraints();
        pnlCom.setLayout(gb);

        jLabelcommPort = setJLabel("Com Port : ");
        jLabelbaudRate = setJLabel("Baud Rate : ");
        jLabelplcAddress = setJLabel("Plc Address : ");
        jLabelsendTime = setJLabel("<html>Send Time : <br/>x 50 ms (2 - 99)</html>");
        jLabelx50 = setJLabel(" x 50 ms (2 - 99)");
        jComboBoxcommPort = setJComboBox(commPortList);
        jComboBoxbaudRate = setJComboBox(bitRateList);
        jTextAreaPlcAddress = setJTextField("");
        jTextAreaSendTime = setJTextField("");
        lblComType=setJLabel("Com type : ");
        cmbComType=setJComboBox(comType);
        lblIPAddress=setJLabel("IP Address : ");
        txtIPAddress=setJTextField("");



        gc.insets = new Insets(10,0,0,0);
        gc.ipadx = 80; 
        gc.weightx = 0.25;
        gc.gridx = 0;
        gc.gridy = 0;
        gc.anchor=GridBagConstraints.EAST;
        pnlCom.add(jLabelcommPort,gc);

        gc.insets = new Insets(10,0,0,0);
        gc.ipadx = 80; 
        gc.weightx = 0.25;
        gc.gridx = 1;
        gc.gridy = 0;
        gc.anchor=GridBagConstraints.EAST;
        pnlCom.add(jComboBoxcommPort,gc);




        gc.insets=new Insets(10,0,0,0);
        gc.ipadx=80;
        gc.weightx = 0.5;
        gc.gridx=0;
        gc.gridy=1;
        gc.anchor=GridBagConstraints.EAST;
        pnlCom.add(jLabelbaudRate,gc);


        gc.insets=new Insets(10,0,0,0);
        gc.ipadx=80;
        gc.weightx = 0.5;
        gc.gridx=1;
        gc.gridy=1;
        gc.anchor=GridBagConstraints.EAST;
        pnlCom.add(jComboBoxbaudRate,gc);


        gc.insets=new Insets(10,0,0,0);
        gc.ipadx=80;
        gc.weightx = 0.5;
        gc.gridx=0;
        gc.gridy=2;
        gc.anchor=GridBagConstraints.EAST;
        pnlCom.add(lblComType,gc);


        gc.insets=new Insets(10,0,0,0);
        gc.ipadx=80;
        gc.weightx = 0.25;
        gc.gridx=1;
        gc.gridy=2;
        gc.anchor=GridBagConstraints.EAST;
        pnlCom.add(cmbComType,gc);








        gc.insets = new Insets(10,0,0,0);
        gc.ipadx = 80; 
        gc.weightx = 0.25;
        gc.gridx = 2;
        gc.gridy = 0;
        gc.anchor=GridBagConstraints.WEST;
        pnlCom.add(lblIPAddress,gc);

        gc.insets = new Insets(10,0,0,0);
        gc.ipadx = 80; 
        gc.weightx = 0.25;
        gc.gridx = 3;
        gc.gridy = 0;
        gc.anchor=GridBagConstraints.WEST;
        pnlCom.add(txtIPAddress,gc);
Это было полезно?

Решение

Попробуйте установить iPadx = 0 для всех JLabels. Анкет Еще одна вещь - уменьшить все вставки. Вы оставили вставку = 10 для всех элементов управления. Попробуйте установить их на 5.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top