現在、swing レイアウトでコーディングしています。現在の様子は次のとおりです。
そして、これは次のようになります。
現在、ボタンは間違った場所にあります:
これが私のコードです:
layout.setHorizontalGroup(
layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
.addComponent(header)//table header
.addComponent(tableG)//here comes the table
.addGroup(layout.createParallelGroup()
.addComponent(b3)//button1
.addComponent(b4)))//button2
);
layout.setVerticalGroup(
layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
.addComponent(b3)//button1
.addComponent(b4)) //button2
.addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
.addComponent(header)//tableheader
.addComponent(tableG))//table
);
layout.linkSize(SwingConstants.HORIZONTAL, b3, b4);
ボタンがテーブルの上にあるのはなぜですか?
私はあなたの答えに感謝します!!!