5

JTabbedPane我正在使用 Nimbus 外观创建应用程序

我已使用此代码放置选项卡:

pane.addTab("Welcome",new ImageIcon("resources\\1.png"),mainPanel,"Takes to the welcome page");

我希望图标出现在左侧

应用程序截图

4

2 回答 2

9

您可以通过JTabbedPane.setTabComponentAt(int index, Component component)方法设置自定义组件来呈现选项卡标题:

设置负责呈现指定选项卡标题的组件。空值意味着JTabbedPane将呈现指定选项卡的标题和/或图标。非 null 值意味着组件将呈现标题并且JTabbedPane不会呈现标题和/或图标。

注意:该组件不能是开发人员已添加到选项卡式窗格中的组件。

例如,您可以这样做:

JLabel label = new JLabel("Tab1");
label.setHorizontalTextPosition(JLabel.TRAILING); // Set the text position regarding its icon
label.setIcon(UIManager.getIcon("OptionPane.informationIcon"));

JTabbedPane tabbedPane = new JTabbedPane(JTabbedPane.LEFT);
tabbedPane.addTab(null, new JPanel());
tabbedPane.setTabComponentAt(0, label); // Here set the custom tab component

截图一:

在此处输入图像描述


注意:使用此功能,您可以根据需要设置任何Component内容。例如,您可以JPanel使用 aJButton来关闭选项卡:

final JTabbedPane tabbedPane = new JTabbedPane(JTabbedPane.LEFT);

ActionListener actionListener = new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {
        JButton button = (JButton)e.getSource();
        for(int i = 0; i < tabbedPane.getTabCount(); i++) {
            if(SwingUtilities.isDescendingFrom(button, tabbedPane.getTabComponentAt(i))) {
                tabbedPane.remove(i);
                break;
            }
        }
    }
};

JLabel label = new JLabel("Tab1", UIManager.getIcon("OptionPane.informationIcon"), JLabel.RIGHT);        
JButton closeButton = new JButton("X");
closeButton.addActionListener(actionListener);

JPanel tabComponent = new JPanel(new BorderLayout());
tabComponent.add(label, BorderLayout.WEST);
tabComponent.add(closeButton, BorderLayout.EAST);

tabbedPane.addTab(null, new JPanel());
tabbedPane.setTabComponentAt(0, tabComponent); // Here set the custom tab component

截图二:

在此处输入图像描述


更新

您可能还想查看此主题:JTabbedPane:选项卡位置设置为 LEFT 但图标未对齐

于 2013-11-05T11:53:16.253 回答
0

使用 HTML 格式有一个更简单的解决方案。这是一个使用 html 代码格式化文本的示例,但您也可以格式化选项卡中的其他元素:

final String PRE_HTML = "<html><p style=\"text-align: left; width: 230px\">"; 
final String POST_HTML = "</p></html>"; 

tabbedpane.setTitleAt(0, PRE_HTML + "your title" + POST_HTML);
tabbedpane.setTitleAt(2, PRE_HTML + "your title 2" + POST_HTML);
于 2015-11-18T13:17:05.860 回答