我正在尝试将图像添加到选项卡,使其看起来像一个图标。我想在选项卡上放置一个 png 图像(检查图像)
是否可以在 java 中执行此操作?
问问题
4477 次
2 回答
6
JTabbedPane
allows you to provide a component to act as the tab "renderer" (of sorts).
Take a look at JTabbedPane#setTabComponentAt for more details and check out this example for more details.
Updated with example
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class TestTabbedPaneIcon {
public static void main(String[] args) {
new TestTabbedPaneIcon();
}
public TestTabbedPaneIcon() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}
JTabbedPane tp = new JTabbedPane();
tp.addTab("Dates", new JPanel());
tp.addTab("Deliveries", new JPanel());
tp.addTab("Exports", new JPanel());
tp.setTabComponentAt(0, getLabel("Dates", "/Icon03.png"));
tp.setTabComponentAt(1, getLabel("Deliveries", "/Icon01.png"));
tp.setTabComponentAt(2, getLabel("Exports", "/Icon02.png"));
JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(tp);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
protected JLabel getLabel(String title, String icon) {
JLabel label = new JLabel(title);
try {
label.setIcon(new ImageIcon(ImageIO.read(getClass().getResource(icon))));
} catch (IOException ex) {
ex.printStackTrace();
}
return label;
}
}
于 2013-07-15T07:25:58.337 回答
3
JTabbedPane 有 api 来为选项卡设置一个图标,无论是在添加选项卡内容时还是以后:
// when adding
tabbedPane.addTab(String, Icon, Component);
// after having added
tabbedPane.setIconAt(int, Icon);
于 2013-07-15T09:09:54.743 回答