スクリーンショットに示されているように、左側にテキストエリアを追加した後、2 番目の textLabel と textField が押し下げられました。
左側の TextLabal と textArea を維持しながら、最初の textLabel と textField のすぐ下に 2 番目の textLabel と textField を保持したいと考えています。どうすれば達成できますか?
フォームレイアウトを使用しました。
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;
@SuppressWarnings("serial")
public class UI extends JFrame {
private JPanel panel = new JPanel();
public UI() {
FormLayout layout = new FormLayout(
"right:pref, 3dlu, pref, 30dlu, pref", // columns
"p, 3dlu, p"); //rows
panel.setLayout(layout);
CellConstraints cc = new CellConstraints();
panel = new JPanel (layout);
panel.add (new JLabel ("textf1:"), cc.xy (1, 1));
panel.add (new JTextField (15), cc.xy (3, 1));
panel.add (new JLabel ("textf2:"), cc.xy (1, 3));
panel.add (new JTextField (15), cc.xy (3, 3));
panel.add (new JLabel ("TextL"), cc.xy (5, 1));
panel.add (new JTextArea (10, 10), cc.xy (5, 3));
add(panel);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
pack();
setSize(1024,768);
setLocationRelativeTo(null);
//frame.setVisible(true);
setResizable(false);
}
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
new UI().setVisible(true);
}
});
}
}