JPanel
withに 2 つの JPanel を追加しましたGridBagLayout
。今問題は次のとおりです。
メインパネルが読み込まれると、実際の場所よりも上のパネルビットが表示され、データベースからのデータが読み込まれ、JTextfields
パネルJComboBox
が実際のサイズになります。
サンプルコード:
public class JPanelIssue extends JPanel {
public JPanelIssue() {
JPanel mainPanel = new JPanel(new GridBagLayout());
JPanel panel1 = new JPanel();
JPanel panel2 = new JPanel();
mainPanel.add(panel1, new GridBagConstraints(0, 0, 1, 1, 1.0, 0.6, GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
mainPanel.add(panel2, new GridBagConstraints(0, 1, 1, GridBagConstraints.REMAINDER, 1.0, 0.4,GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
add(mainPanel, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0, GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
}
}
panel1
検索条件に関連するフィールドと表示結果が含まれていpanel2
ますJTable
。
AWT イベント キューまたはその他の問題はありますか?
前もって感謝します。