Вместо перехода к следующей панели с использованием JPanel(). Next и JPanel(). Previous Я хотел бы перейти на конкретную панель с помощью кнопки.Как использовать кнопки для перехода к определенному JPanel?
Скажем, у меня есть 3 страницы, с помощью кнопки с надписью «Перейти на страницу 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? Я хочу перейти на определенную страницу.
Благодарим за помощь.
https://docs.oracle.com/javase/8/docs/api/java/awt/CardLayout. html # show-java.awt.Container-java.lang.String-, https://docs.oracle.com/javase/tutorial/uiswing/layout/card.html –