2013-08-24 1 views
0

Java 창에 8 개의 탭이 있고 전체 탭이 아닌 전체 탭을 닫을 수있는 종료 단추가 있어야합니다 프로그램. 하나의 탭에만 단추를 가져올 수 있으며 아직 작동하게 만드는 방법을 찾지 못했습니다. 여기 내 코드는 지금까지 있습니다 :각 탭을 개별적으로 닫을 모든 탭에 exit 단추를 넣는 방법

import java.awt.BorderLayout; 
import java.awt.Color; 
import java.util.Date; 

import javax.swing.JButton; 
import javax.swing.JFrame; 
import javax.swing.JLabel; 
import javax.swing.JPanel; 
import javax.swing.JTabbedPane; 
import javax.swing.SwingConstants; 

public class JavaTabs extends JFrame { 

    public JavaTabs() { 
     super("Course Project "); 

     JTabbedPane tab = new JTabbedPane(); 
     // constructing the first panel 
     JLabel l1 = new JLabel(" ", SwingConstants.CENTER); 
     JPanel p1 = new JPanel(); 
     p1.setBackground(Color.lightGray); 
     p1.add(l1); 
     tab.addTab("General", null, p1, " Panel #1"); 
     JButton exit = new JButton("Exit"); 

     // constructing the second panel 
     JLabel l2 = new JLabel("Change Company Name", SwingConstants.CENTER); 
     JPanel p2 = new JPanel(); 
     p2.setBackground(Color.lightGray); 
     p2.add(l2); 
     tab.addTab("Options", null, p2, " Panel #2"); 

     // constructing the third panel 
     JLabel l3 = new JLabel(" "); 
     JPanel p3 = new JPanel(); 
     p3.setBackground(Color.lightGray); 
     tab.addTab("Customers", null, p3, " Panel #3"); 

     // constructing the fourth panel 
     JLabel l4 = new JLabel(" "); 
     JPanel p4 = new JPanel(); 
     p4.setBackground(Color.lightGray); 
     p4.add(l4); 
     tab.addTab("Contractors", null, p4, " Panel #4"); 

     // constructing the fifth panel 
     JLabel l5 = new JLabel(" "); 
     JPanel p5 = new JPanel(); 
     p5.setBackground(Color.lightGray); 
     p5.add(l5); 
     tab.addTab("Pools", null, p5, " Panel #5"); 

     // constructing the sixth panel 
     JLabel l6 = new JLabel(" "); 
     JPanel p6 = new JPanel(); 
     p6.setBackground(Color.lightGray); 
     p6.add(l6); 
     tab.addTab("Hot Tubs", null, p6, "Panel #6"); 

     // constructing the seventh panel 
     JLabel l7 = new JLabel(" "); 
     JPanel p7 = new JPanel(); 
     p7.setBackground(Color.lightGray); 
     p7.add(l7); 
     tab.addTab("Temp Calc", null, p7, "Panel #7"); 

     // constructing the eighth panel 
     JLabel l8 = new JLabel(" "); 
     JPanel p8 = new JPanel(); 
     p8.setBackground(Color.lightGray); 
     p8.add(l8); 
     tab.addTab("Length Calc", null, p8, "Panel #8"); 

     JButton test = new JButton("Exit"); 
     p1.add(test); 

     // add JTabbedPane to container 
     getContentPane().add(tab); 

     setSize(350, 300); 
     setLocation(300, 250); 
     setVisible(true); 
    } 

    public static void main(String args[]) { 
     { 
      JavaTabs tabs = new JavaTabs(); 
      tabs.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
     } 
    } 
} 
+1

코드를 편집하여 일관된 들여 쓰기를 의미있게 사용할 수 있도록 잘 형식화하십시오. 코드를 읽는 것이 쉬울수록 쉽게 이해할 수 있습니다. –

+2

[Oracle 탭 분할 창에 대한 자습서] (http://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html)를 확인하십시오. – Vulcan

+1

['TabComponentsDemo'] (http://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html#eg) : "탭에 사용자 정의 구성 요소를 보여줍니다. 닫기 버튼이있는 탭 분할 창을 사용합니다." – trashgod

답변

-1

버튼에 리스너를 추가하고,이 사용할 수 있습니다

tab.setEnabledAt (INT 지수, 부울 B)를;

+0

이렇게하면 탭을 닫을 때 도움이됩니다. 그게 ...? – kleopatra