3

我的主类中有这个类,可以在我的 jTabbedPane 上放置一个关闭按钮。问题是,例如我打开了三个标签:标签日记、联系人和上传,标签联系人是当前选择的标签。当我尝试关闭不是选定选项卡的日记选项卡时,关闭的是当前选定的选项卡。

class Tab extends javax.swing.JPanel implements java.awt.event.ActionListener{
    @SuppressWarnings("LeakingThisInConstructor")
    public Tab(String label){
        super(new java.awt.BorderLayout());
        ((java.awt.BorderLayout)this.getLayout()).setHgap(5);
        add(new javax.swing.JLabel(label), java.awt.BorderLayout.WEST);
        ImageIcon img = new ImageIcon(getClass().getResource("/timsoftware/images/close.png"));
        javax.swing.JButton closeTab = new javax.swing.JButton(img);
        closeTab.addActionListener(this);
        closeTab.setMargin(new java.awt.Insets(0,0,0,0));
        closeTab.setBorder(null);
        closeTab.setBorderPainted(false);
        add(closeTab, java.awt.BorderLayout.EAST);
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        closeTab();    //function which closes the tab          
    }

}

private void closeTab(){
    menuTabbedPane.remove(menuTabbedPane.getSelectedComponent());
}

这就是我调用选项卡的方法:

menuTabbedPane.setTabComponentAt(menuTabbedPane.indexOfComponent(jvPanel), new Tab("contactPanel"));
4

2 回答 2

4

你的actionPerformed()方法调用你的closeTab()方法。您的方法会从选项卡式窗格closeTab()中删除当前选定的选项卡。

相反,您需要使用单击的按钮删除与您的选项卡对应的组件。

当您创建您的Tab时,还将作为选项卡窗格内容的组件传递给构造函数。然后,您可以在您的actionPerformed()方法中使用它,并将组件传递给closeTab()

public void actionPerformed(ActionEvent e)
{
  closeTab(component);
}

private void closeTab(JComponent component)
{
  menuTabbedPane.remove(component);
}

这里有更多的上下文:

tab = new Tab("The Label", component);          // component is the tab content
menuTabbedPane.insertTab(title, icon, component, tooltip, tabIndex);
menuTabbedPane.setTabComponentAt(tabIndex, tab);

而在标签...

public Tab(String label, final JComponent component)
{
  ...
  closeTab.addActionListener(new ActionListner()
  {
    public void actionPerformed(ActionEvent e)
    {
      closeTab(component);
    }
  });
  ...
}
于 2012-05-10T01:58:42.660 回答
1

通过删除 getSelectedComponent() 您将始终删除选定的选项卡,如果要删除日志选项卡,您需要将日志选项卡组件传递给 remove 方法。

于 2012-05-10T01:54:55.220 回答