有没有办法在选项卡组件中放置图像

时间:2013-08-27 14:23:55

标签: java swing jtabbedpane nimbus

我正在向标签添加图标,但我希望ImageIcon适合所有tabComponent。

enter image description here

我试过这段代码

ImageIcon icon = new ImageIcon("images/itemtexto-off.png");
Image img = icon.getImage() ;  
Image newimg = img.getScaledInstance( 50, 25,  java.awt.Image.SCALE_DEFAULT ) ;  
icon = new ImageIcon( newimg );
tabbedPaneProductDetail.setIconAt(0, icon);

我也试过这个解决方案,但没有奏效。

JLabel label = new JLabel(icon);
label.setBackground(Color.BLUE);
tabbedPaneProductDetail.setTabComponentAt(1,label);

2 个答案:

答案 0 :(得分:2)

您可以尝试使用UIManager。在开始创建组件之前,在程序开头添加以下内容:

UIManager.put("TabbedPane.tabInsets", new Insets(0, 0, 0, 0));

当然并非所有LAF都支持此选项。有关详细信息,请参阅UIManager Defaults

答案 1 :(得分:1)

我找到了一个解决方案,我不知道它是否合适,感谢@camickr

tabbedPane.setUI(new SynthTabbedPaneUI(){

Insets insets =new Insets(0, 0, 0, 0);

@Override
protected Insets getTabInsets(int tabPlacement,
                  int tabIndex){
                  return insets;
}

});

enter image description here

<强>更新

我找到另一个设置此属性的解决方案

UIManager.getLookAndFeelDefaults().put("TabbedPane:TabbedPaneTab.contentMargins",  new Insets(0, 0, 0, 0));