2つのパネルがフレームの40%と60%になるようにGridBagLayoutを取得しようとしていますが、内部にコンポーネントを持つことができ、面倒です。コンポーネントが内部にあるJava GridBagLayout
私はパネル内にボタンを置かないと、それは私が欲しいのと同じように動作します。
私が間違っていることはよくわからず、ボタンの作成をGridBagLayoutのパネルが作成された場所に移動しようとしましたが、それでも動作しませんでした。ここ
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Test{
public void display(){
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(900,650);
frame.setVisible(true);
JPanel test = new JPanel();
test.setLayout(new GridBagLayout());
GridBagConstraints c= new GridBagConstraints();
JPanel left= new JPanel();
JPanel right= new JPanel();
c.fill = GridBagConstraints.VERTICAL - GridBagConstraints.HORIZONTAL;
c.weightx = 0.4;
c.gridx = 1;
c.weighty = 1;
test.add(left,c);
c.weightx = .6;
c.gridx = 2;
test.add(right,c);
JButton button= new JButton("A button");
left.add(button,c);//If I do not add this, then it shows how I want it to be
frame.add(test);
}
}
'createVector'とは何ですか? –
申し訳ありませんが、ボタンに名前を変更しました。 – user1062898
私はそれを実行すると、ボタンの有無にかかわらず、40/60%の分割を持つ2つのパネルのように見えます。それはまさにそれが問題なのですか? – Ash