如何使用按钮切换到特定的JPanel?
How to use buttons to switch to a specific JPanel?
我不想使用 JPanel().next 和 JPanel().previous 转到下一个面板,而是想使用按钮切换到特定面板。
假设我有 3 个页面,通过使用标记为 'Go to page 3' 的按钮,它会将我带到我为第 3 页创建的面板;在那个页面上我会有更多的按钮,可以让我回到第 1 页,甚至第 2 页。假设我有第十页,一个按钮可以直接将我带到它,而我不必单击下一个按钮。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/* Here we are first declaring our class that will act as the
* base for other panels or in other terms the base for CardLayout.
*/
public class CardLayoutExample
{
private static final String CARD_JBUTTON = "Card JButton";
private static final String CARD_JTEXTFIELD = "Card JTextField";
private static final String CARD_JRADIOBUTTON = "Card JRadioButton";
private static void createAndShowGUI()
{
JFrame frame = new JFrame("Card Layout Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
// This JPanel is the base for CardLayout for other JPanels.
final JPanel contentPane = new JPanel();
contentPane.setLayout(new CardLayout(20, 20));
/* Here we are making objects of the Window Series classes
* so that, each one of them can be added to the JPanel
* having CardLayout.
*/
Window1 win1 = new Window1();
contentPane.add(win1, CARD_JBUTTON);
Window2 win2 = new Window2();
contentPane.add(win2, CARD_JTEXTFIELD);
Window3 win3 = new Window3();
contentPane.add(win3, CARD_JRADIOBUTTON);
/* We need two JButtons to go to the next Card
* or come back to the previous Card, as and when
* desired by the User.
*/
JPanel buttonPanel = new JPanel();
final JButton page1Button = new JButton("Go to page 1");
final JButton page5Button = new JButton("Go to Page 5");
final JButton page10Button = new JButton("Go to Page 10");
buttonPanel.add(page1Button);
buttonPanel.add(page5Button);
buttonPanel.add(page10Button);
/* Adding the ActionListeners to the JButton,
* so that the user can see the next Card or
* come back to the previous Card, as desired.
*/
page1Button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
CardLayout cardLayout = (CardLayout) contentPane.getLayout();
cardLayout.previous(contentPane);
}
});
page5Button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
CardLayout cardLayout = (CardLayout) contentPane.getLayout();
cardLayout.next(contentPane);
}
});
//page10Button.addActionListener(new ActionListener();
//Code to navigate to page 10...
// Adding the contentPane (JPanel) and buttonPanel to JFrame.
frame.add(contentPane, BorderLayout.CENTER);
frame.add(buttonPanel, BorderLayout.PAGE_END);
frame.pack();
frame.setVisible(true);
}
public static void main(String... args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
createAndShowGUI();
}
});
}
}
我已经为单击按钮设置了方法,但它只导航到下一页,而不是我想要的页面。
.next 和 .previous 还有哪些其他替代方案?我想转到特定页面。
感谢您的帮助。
添加到卡片布局时,您可以指定一个 "key" 以供稍后在尝试显示特定面板时参考。
下面的示例应该可以帮助您入门:
CardLayout myCardLayout = new CardLayout();
JPanel myCardLayoutPanel = new JPanel(myCardLayout);
myCardLayoutPanel.add(myComponent, "A_KEY");
myCardLayout.show(myCardLayoutPanel,"A_KEY");
此外,您应该查看 docs
我不想使用 JPanel().next 和 JPanel().previous 转到下一个面板,而是想使用按钮切换到特定面板。
假设我有 3 个页面,通过使用标记为 'Go to page 3' 的按钮,它会将我带到我为第 3 页创建的面板;在那个页面上我会有更多的按钮,可以让我回到第 1 页,甚至第 2 页。假设我有第十页,一个按钮可以直接将我带到它,而我不必单击下一个按钮。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/* Here we are first declaring our class that will act as the
* base for other panels or in other terms the base for CardLayout.
*/
public class CardLayoutExample
{
private static final String CARD_JBUTTON = "Card JButton";
private static final String CARD_JTEXTFIELD = "Card JTextField";
private static final String CARD_JRADIOBUTTON = "Card JRadioButton";
private static void createAndShowGUI()
{
JFrame frame = new JFrame("Card Layout Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
// This JPanel is the base for CardLayout for other JPanels.
final JPanel contentPane = new JPanel();
contentPane.setLayout(new CardLayout(20, 20));
/* Here we are making objects of the Window Series classes
* so that, each one of them can be added to the JPanel
* having CardLayout.
*/
Window1 win1 = new Window1();
contentPane.add(win1, CARD_JBUTTON);
Window2 win2 = new Window2();
contentPane.add(win2, CARD_JTEXTFIELD);
Window3 win3 = new Window3();
contentPane.add(win3, CARD_JRADIOBUTTON);
/* We need two JButtons to go to the next Card
* or come back to the previous Card, as and when
* desired by the User.
*/
JPanel buttonPanel = new JPanel();
final JButton page1Button = new JButton("Go to page 1");
final JButton page5Button = new JButton("Go to Page 5");
final JButton page10Button = new JButton("Go to Page 10");
buttonPanel.add(page1Button);
buttonPanel.add(page5Button);
buttonPanel.add(page10Button);
/* Adding the ActionListeners to the JButton,
* so that the user can see the next Card or
* come back to the previous Card, as desired.
*/
page1Button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
CardLayout cardLayout = (CardLayout) contentPane.getLayout();
cardLayout.previous(contentPane);
}
});
page5Button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
CardLayout cardLayout = (CardLayout) contentPane.getLayout();
cardLayout.next(contentPane);
}
});
//page10Button.addActionListener(new ActionListener();
//Code to navigate to page 10...
// Adding the contentPane (JPanel) and buttonPanel to JFrame.
frame.add(contentPane, BorderLayout.CENTER);
frame.add(buttonPanel, BorderLayout.PAGE_END);
frame.pack();
frame.setVisible(true);
}
public static void main(String... args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
createAndShowGUI();
}
});
}
}
我已经为单击按钮设置了方法,但它只导航到下一页,而不是我想要的页面。
.next 和 .previous 还有哪些其他替代方案?我想转到特定页面。
感谢您的帮助。
添加到卡片布局时,您可以指定一个 "key" 以供稍后在尝试显示特定面板时参考。 下面的示例应该可以帮助您入门:
CardLayout myCardLayout = new CardLayout();
JPanel myCardLayoutPanel = new JPanel(myCardLayout);
myCardLayoutPanel.add(myComponent, "A_KEY");
myCardLayout.show(myCardLayoutPanel,"A_KEY");
此外,您应该查看 docs