Source Code : Tab Color Example
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Tab Color Example

// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.UIManager;
/**
* @version 1.1 06/02/99
*/
public class TabColorExample extends JPanel {
public TabColorExample() {
setLayout(new BorderLayout());
UIManager.put("TabbedPane.selected", Color.green);
JTabbedPane tabbedPane = new JTabbedPane();
String tabs[] = { "One", "Two", "Three", "Four" };
Color[] colors = { null, Color.red, null, null };
for (int i = 0; i < tabs.length; i++) {
tabbedPane.addTab(tabs[i], createPane(tabs[i]));
tabbedPane.setBackgroundAt(i, colors[i]);
}
tabbedPane.setSelectedIndex(0);
add(tabbedPane, BorderLayout.CENTER);
}
JPanel createPane(String s) {
JPanel p = new JPanel();
p.add(new JLabel(s));
return p;
}
public static void main(String[] args) {
JFrame frame = new JFrame("Tab color Example");
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
frame.getContentPane().add(new TabColorExample());
frame.setSize(200, 100);
frame.setVisible(true);
}
}
Thank with us