- Example - Home
- Example - Environment Setup
- Example - Borders
- Example - Buttons
- Example - CheckBoxes
- Example - Combo Boxes
- Example - Color Choosers
- Example - Dialogs
- Example - Editor Panes
- Example - File Choosers
- Example - Formatted TextFields
- Example - Frames
- Example - Lists
- Example - Layouts
- Example - Menus
- Example - Password Fields
- Example - Progress Bars
- Example - Scroll Panes
- Example - Sliders
- Example - Spinners
- Example - Tables
- Example - Toolbars
- Example - Tree
Swing Examples - Tabbed Pane with Icon
The class TabbedPane allows to have tabbed screen.
Example
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.KeyEvent;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JSplitPane;
import javax.swing.JTabbedPane;
import javax.swing.JTextField;
public class SwingTester {
public static void main(String[] args) {
createWindow();
}
private static void createWindow() {
JFrame frame = new JFrame("Swing Tester");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
createUI(frame);
frame.setSize(560, 200);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private static void createUI(final JFrame frame){
JTabbedPane tabbedPane = new JTabbedPane();
ImageIcon arrowIcon = null;
java.net.URL imgURL = SwingTester.class.getResource("arrow.jpg");
if (imgURL != null) {
arrowIcon = new ImageIcon(imgURL);
} else {
JOptionPane.showMessageDialog(frame, "Icon image not found.");
}
JPanel panel1 = new JPanel(false);
JLabel filler = new JLabel("Tab 1");
filler.setHorizontalAlignment(JLabel.CENTER);
panel1.setLayout(new GridLayout(1, 1));
panel1.add(filler);
tabbedPane.addTab("Tab 1", arrowIcon, panel1,"Tab 1 tooltip");
tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
JPanel panel2 = new JPanel(false);
JLabel filler2 = new JLabel("Tab 2");
filler2.setHorizontalAlignment(JLabel.CENTER);
panel2.setLayout(new GridLayout(1, 1));
panel2.add(filler2);
tabbedPane.addTab("Tab 2", null, panel2,"Tab 2 tooltip");
tabbedPane.setMnemonicAt(0, KeyEvent.VK_2);
frame.getContentPane().add(tabbedPane, BorderLayout.CENTER);
}
}
Output
swingexamples_layouts.htm
Advertisements