我正在向选项卡添加图标,但我希望 ImageIcon 适合所有选项卡组件。
我试过这段代码
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);