How to switch tabs in jTabbedPane by clicking a Button?

前端 未结 5 627
有刺的猬
有刺的猬 2021-02-05 05:46

I have two JTabbedPanes, JTabbedPane1 & 2 How can I press button in JTabbedPane2 to show JTabbedPane1 ?

Here is the code for JTabbedPane:

public cla         


        
5条回答
  •  甜味超标
    2021-02-05 06:30

    its very simple: use the code below:

    JTabbedpane.setSelectedIndex(); 
    

    what ever the name is of you J Panel replace it with the above JTabbedpane and for example you want to select the first tabs simply put 0 in bracket and if you want to select second tab then put 1 in bracket eg: my J tabbed pane is called jtabbedpanel and I want the first tab then the line will look as:

    jtabbedpanel.setSelectedIndex(0);
    

    hope this helps!!

提交回复
热议问题