次のコード
int numberofrows = 3;
JFrame frame = new JFrame("Question 12844473");
frame.setLayout(new MigLayout("fill, debug", "", "[][][150]"));
for(int i=0; i<numberofrows-1; ++i) {
frame.add(new JButton("Button #" +i), "wrap");
}
frame.add(new JButton("Exit"));
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.pack();
frame.setVisible(true);
次の画像を提供します
これは、各角括弧パターンが各行に対応しているため、3番目の行がセットアップの影響を受けたことを意味します。
しかし、行数が異なる場合、最後の行にどのように影響しますか?または、すべての行に影響を与える方法は?または、最後の行を個別に設定しながら、最後の行を除くすべての行に影響を与える方法はありますか?
行数がわからないという意味です。