1
이 함수를 사용하여 탭을 만듭니다. 버튼을 추가하고 싶을 때 "?" 이 버튼은이 JTable의 우측에 표시됩니다. 이것을 편집하는 방법? Dp/Drho ", comp2 -"2. Df2/Drho ", comp3 -"3. SDSS ", comp4 -"4. Help ". name1-4 -이 탭들의 이름. 스윙 - GridBagLayout 버튼 실수 추가
static protected JPanel allocateUniPane(Component comp1,Component comp2,Component comp3, Component comp4,
String name1, String name2, String name3, String name4){
JPanel resultPane = new JPanel();
GridBagLayout gridbagforUnionPane = new GridBagLayout();
GridBagConstraints cUnionPane = new GridBagConstraints();
resultPane.setLayout(gridbagforUnionPane);
cUnionPane.fill = GridBagConstraints.BOTH;
cUnionPane.anchor = GridBagConstraints.CENTER;
JButton showWizard = new JButton("?");
cUnionPane.weightx = 0.5;
cUnionPane.weighty = 0.5;
JTabbedPane jtp = new JTabbedPane();
jtp.addTab(name1, comp1);
jtp.addTab(name2, comp2);
jtp.addTab(name3, comp3);
jtp.addTab(name4, comp4);
cUnionPane.gridx = 0;
cUnionPane.gridy = 0;
resultPane.add(jtp,cUnionPane);
cUnionPane.fill = GridBagConstraints.NORTH;
cUnionPane.weightx = 0.5;
cUnionPane.gridx = 1;
cUnionPane.gridy = 0;
resultPane.add(showWizard,cUnionPane);
return resultPane;
}
나는 [오버레이 레이아웃] (https://docs.oracle.com/javase/7/docs/api/javax/swing/OverlayLayout.html)에 대한 문서를 발견했다. 하지만 어떻게 작동하는지 이해하지 못합니다. 만약 우리가 중간에'checkBox'를 원한다면? 나는 물건의 위치를 어떻게 처리 할까? 나는 한 물체를 다른 물체 위에 칠하는 것을 안다. 내가 나 자신을 설명하는지 잘 모르겠다. – Frakcool
@Frakcool'중간에 checkBox를 원하면 어떻게 될까요? '문서가 좋지 않고 레이아웃이 직관적이지 않다고 동의했다. 기본적으로 당신은'setAlignmentX()'속성으로 놀 필요가있다. 두 요소의 정렬을 0.5f로 변경해야한다고 생각합니다. 시행 착오로 만 작동하도록 할 수 있습니다. – camickr
내가 필요한 것, 감사합니다! JCheckBox는 멋지지만 JButton은 탭에 비해 너무 커서 하단 테두리를 닫으므로 여기서는 좋지 않습니다. – Denis