1 回答
TA贡献1874条经验 获得超12个赞
您需要revalidate()添加的组件如下所示:
centerPanel.revalidate();
您需要更改以下代码:
month_combo.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
if(month_combo.getSelectedItem().equals("January")){
for(int i = 0;i < 31;i++){
centerPanel.add(method_Btn(i));
}
}
if(month_combo.getSelectedItem().equals("February")){
for(int i = 0;i < 28;i++){
centerPanel.add(method_Btn(i));
}
}
centerPanel.revalidate(); // Need to add this for revalidation for the component
}
});
添加回答
举报
