//将 personal 添加到 jPanel 中去
jPanel.add(personal,BorderLayout.CENTER);
}
/**
* education初始化
*/
public void initEducation(){
education.setLayout(new GridLayout(2,1));
//设置 panel
JPanel eduBackground = new JPanel();
eduBackground.setLayout(new GridLayout(1,7));
JPanel majorCourse = new JPanel();
majorCourse.setLayout(new GridLayout(1,7));
education.add(eduBackground);
education.add(majorCourse);
//设置 label
JLabel eduLabel = new JLabel("学历:");
JLabel courseLabel = new JLabel("主修课程:");
//设置 button 并添加
JRadioButton primary = new JRadioButton("小学");
JRadioButton middle = new JRadioButton("初中");
JRadioButton high = new JRadioButton("高中");
JRadioButton college = new JRadioButton("大学");
JRadioButton graduate = new JRadioButton("研究生");
JRadioButton doctor = new JRadioButton("博士");