我正在使用 java swing,我想在用户从JMenuBar
.
启动应用程序时选项卡将不存在。只有在选择“新建”后才会显示这些内容。
我该怎么做?我需要将这些添加到actionListener
“新”中吗?如何添加?
我正在使用 java swing,我想在用户从JMenuBar
.
启动应用程序时选项卡将不存在。只有在选择“新建”后才会显示这些内容。
我该怎么做?我需要将这些添加到actionListener
“新”中吗?如何添加?
ActionListener
像这样添加一个JButton
:
final JTabbedPane tabbedPane = new JTabbedPane();
JButton addButton = new JButton("new");
addButton.addActionListener(new ActionListener() {
//will be called if the button gets clicked
@Override
public void actionPerformed(ActionEvent e) {
JPanel panel = new JPanel();//will be displayed in the Tab
tabbedPane.add("title", panel);
//.add() is the easier way for tabbedPane.insertTab(many arguments here)
//add what ever you like(repeat three times)
}
});