2014-12-06 8 views
1

이 함수를 사용하여 탭을 만듭니다. 버튼을 추가하고 싶을 때 "?" 이 버튼은이 JTable의 우측에 표시됩니다. 이것을 편집하는 방법? Dp/Drho ", comp2 -"2. Df2/Drho ", comp3 -"3. SDSS ", comp4 -"4. Help ". name1-4 -이 탭들의 이름. enter image description here스윙 - 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; 
} 

답변

3

버튼이 탭 패널의 일부로 표시되도록하려고합니다. GridBagLayout (또는 대부분의 다른 레이아웃)은 패널의 두 차원으로 위치 구성 요소를 배치하기 때문에 사용할 수 없습니다.

아마도 오버레이 레이아웃은 3 차원의 구성 요소를 배치하기 때문에 원하는대로 할 수 있습니다. 예를 들어 :

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

public class TabbedPaneWithComponent 
{ 
    private static void createAndShowUI() 
    { 
     JPanel panel = new JPanel(); 
     panel.setLayout(new OverlayLayout(panel)); 

     JTabbedPane tabbedPane = new JTabbedPane(); 
     tabbedPane.add("1", new JTextField("one")); 
     tabbedPane.add("2", new JTextField("two")); 
     tabbedPane.setAlignmentX(1.0f); 
     tabbedPane.setAlignmentY(0.0f); 

     JCheckBox checkBox = new JCheckBox("Check Me"); 
     checkBox.setOpaque(false); 
     checkBox.setAlignmentX(1.0f); 
     checkBox.setAlignmentY(0.0f); 

     panel.add(checkBox); 
     panel.add(tabbedPane); 

     JFrame frame = new JFrame("TabbedPane With Component"); 
     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
     frame.add(panel); 
     frame.setLocationByPlatform(true); 
     frame.setSize(400, 100); 
     frame.setVisible(true); 
    } 

    public static void main(String[] args) 
    { 
     EventQueue.invokeLater(new Runnable() 
     { 
      public void run() 
      { 
       createAndShowUI(); 
      } 
     }); 
    } 
} 
+0

나는 [오버레이 레이아웃] (https://docs.oracle.com/javase/7/docs/api/javax/swing/OverlayLayout.html)에 대한 문서를 발견했다. 하지만 어떻게 작동하는지 이해하지 못합니다. 만약 우리가 중간에'checkBox'를 원한다면? 나는 물건의 위치를 ​​어떻게 처리 할까? 나는 한 물체를 다른 물체 위에 칠하는 것을 안다. 내가 나 자신을 설명하는지 잘 모르겠다. – Frakcool

+0

@Frakcool'중간에 checkBox를 원하면 어떻게 될까요? '문서가 좋지 않고 레이아웃이 직관적이지 않다고 동의했다. 기본적으로 당신은'setAlignmentX()'속성으로 놀 필요가있다. 두 요소의 정렬을 0.5f로 변경해야한다고 생각합니다. 시행 착오로 만 작동하도록 할 수 있습니다. – camickr

+0

내가 필요한 것, 감사합니다! JCheckBox는 멋지지만 JButton은 탭에 비해 너무 커서 하단 테두리를 닫으므로 여기서는 좋지 않습니다. – Denis