我正在尝试根据JRadioButton选择动态地更改内容。我的简化代码如下所示。
//import
public class Thing {
//
JPanel pnlMain, pnl1, pnl2, pnlRt, pnlLt;
JRadioBtn btn1, btn2;
//
Thing () {
//
//initialize panels, add to them, etc.
pnlMain.add(pnlLt);
pnlMain.add(pnl1);
pnlMain.add(pnlRt);
//
//Get it showing and stuff.
//
}
//
//One instance of this class connected to all radio buttons.
class Evt implements ActionListener {
public void actionImplemented (ActionEvent evt) {
//
pnlMain.remove(1);
//
if (evt.getActionCommand().equals("Radio 1"))
pnlMain.add(pnl1);
else pnlMain.add(pnl2);
//
pnlMain.validate();
//
}
}
//
public static void main (String[] args) {
new Thing();
}
//
}
这使我可以更改面板,但是我无法更改回以前选择的面板...我不明白为什么。请帮忙!!!
最佳答案
您应该改用CardLayout,因为这正是它的用途。检出tutorial here。
关于java - 基于JRadioButton动态更改JPanel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9233394/