2

いくつかのコンポーネントを含む JInternalFrame を作成したいと考えています。

私の目的は、Java で bash コンソールを設計することです。

私のフレームは 4 つのコンポーネントで構成されています。

  • JScrollPane に含まれる JTextArea
  • テキスト「Cmd:」を含む JLabel
  • JTextField
  • 「送信」というテキストを含む JButton

そして、私は次のコードを持っています:

Box box = Box.createHorizontalBox();
box.add(Box.createVerticalStrut(5));
box.add(this.cmd_label);
box.add(Box.createVerticalStrut(5));
box.add(this.cmd_input);
box.add(Box.createVerticalStrut(5));
box.add(this.submit);
box.add(Box.createVerticalStrut(5));

Box mainBox = Box.createVerticalBox();
mainBox.add(Box.createHorizontalStrut(5));
mainBox.add(this.result_scroll);
mainBox.add(Box.createHorizontalStrut(5));
mainBox.add(box);
mainBox.add(Box.createHorizontalStrut(5));
add(mainBox);

したがって、フレームが最大化されていない場合、正しい外観になります。

最大化されていないフレーム

しかし、最大化すると、すべてのコンポーネントが正しく配置されません。

最大化されたフレーム

そこで、私の質問は次のとおりです。コンポーネントにウェイトを設定して、毎回位置を固定するにはどうすればよいですか?

ありがとう。

4

3 に答える 3

3

これは で行う方がよいと思いますBorderLayout。BorderLayout では、中央コンポーネントとして指定されたコンポーネントが拡張されて可能な限り多くのスペースを埋め、その他のコンポーネントは適切なサイズのままになります。

int hgap = 5;
int vgap = 5;
internalFrame.getContentPane().setLayout(new BorderLayout(hgap, vgap));
internalFrame.getContentPane().add(this.result_scroll, BorderLayout.CENTER);
JPanel bottomPanel = new JPanel();
bottomPanel.add(this.cmd_label);
bottomPanel.add(this.cmd_input);
bottomPanel.add(this.submit);
internalFrame.getContentPane().add(bottomPanel, BorderLayout.SOUTH);
于 2012-04-20T14:30:43.537 に答える
2

ここでこのコードを試してみてください。この動作は例外です:

import java.awt.*;
import javax.swing.*;

public class LayoutExample
{
    private void createAndDisplayGUI()
    {
        JFrame frame = new JFrame("LAYOUT EXAMPLE");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        JPanel centerPanel = new JPanel();
        centerPanel.setLayout(new BorderLayout(5, 5));
        centerPanel.setBorder(
                    BorderFactory.createEmptyBorder(2, 2, 2, 2));
        JTextArea tarea = new JTextArea(10, 10);
        tarea.setBackground(Color.DARK_GRAY.darker());  
        tarea.setForeground(Color.WHITE);
        tarea.setCaretColor(Color.WHITE);
        tarea.setLineWrap(true);

        JScrollPane scrollPane = new JScrollPane(tarea);
        centerPanel.add(scrollPane, BorderLayout.CENTER);

        JPanel footerPanel = new JPanel();
        footerPanel.setLayout(new BorderLayout(5, 5));
        footerPanel.setBorder(
                    BorderFactory.createEmptyBorder(2, 2, 2, 2));       
        JLabel cmdLabel = new JLabel("Cmd : ");         
        JTextField tfield = new JTextField(10);

        JPanel buttonPanel = new JPanel();
        buttonPanel.setBorder(
                    BorderFactory.createEmptyBorder(2, 2, 2, 2));
        JButton sendButton = new JButton("SEND");

        footerPanel.add(cmdLabel, BorderLayout.LINE_START);
        footerPanel.add(tfield, BorderLayout.CENTER);
        buttonPanel.add(sendButton);
        footerPanel.add(buttonPanel, BorderLayout.LINE_END);

        frame.getContentPane().add(centerPanel, BorderLayout.CENTER);
        frame.getContentPane().add(footerPanel, BorderLayout.PAGE_END);

        frame.pack();
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }

    public static void main(String... args)
    {   
        SwingUtilities.invokeLater(new Runnable()
        {
            public void run()
            {
                new LayoutExample().createAndDisplayGUI();
            }
        });
    }
}

出力:

スタート時

最大化時

于 2012-04-20T15:09:10.007 に答える
1

ここでの基本的な問題は、JTextFieldの最大レイアウトヒントのバグと私が考えるものです。水平方向垂直方向の両方で無制限です。後者は、1行のテキストを表示するために設計されたコンポーネントにとってはまったく意味がありません。修正するには、サブクラス化して、次のように高さの設定を返すようにします。

JTextField cmdInput = new JTextField() {

    @Override
    public Dimension getMaximumSize() {
        Dimension max = super.getMaximumSize();
        max.height = getPreferredSize().height;
        return max;
    }

};

BoxLayoutはmaxSizeを尊重するため、余分な高さは一番上のボックスにのみ与えられます。

長期的には、オールインワンパネルアプローチで微調整できるサードパーティのマネージャーに切り替えることを検討してください。ええ、ここに私の現在のお気に入りが来ます:MigLayout。次の行を上記のすべてのネストと境界線のトリックと比較して、楽しんでください:-)

MigLayout layout = new MigLayout("wrap 3, debug", 
        "[][grow, fill][]", // 3 columns, middle column filled and allows growing
        "[grow, fill][]"); // two rows, first filled and allows growing

JComponent content = new JPanel(layout);
// the scrollPane in the first row spanning all columns
// and growing in both directions 
content.add(new JScrollPane(new JTextArea(20, 20)), "span, grow");
// auto-wrapped to first column in second row
content.add(new JLabel("Cmd:"));
content.add(new JTextField());
content.add(new JButton("Submit"));
于 2012-06-30T10:24:28.870 に答える