|
/* Create a combo box and a descriptive label */
fontStylePrompt = new JLabel("Select a font for your resume: ");
fontStylePrompt.setAlignmentX(JLabel.CENTER_ALIGNM ENT);
content.add(fontStylePrompt);
String[] fonts = {"Times New Roman", "Ariel"}
fontStyle = new JComboBox(fonts);
fontStyle.setAlignmentX(JComboBox.CENTER_ALIGNMENT );
fontStyle.setSelectIndex(0);
fontStyle.addActionListener(this);
content.add(fontStyle);
here a small snipet of code for the JComboBox that will help you
|