-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComboBoxFrame.java
More file actions
43 lines (33 loc) · 1.28 KB
/
ComboBoxFrame.java
File metadata and controls
43 lines (33 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package comboBox;
import javax.swing.*;
import java.awt.*;
/**
* A frame with a sample text label and a combo box for selecting font faces.
*/
public class ComboBoxFrame extends JFrame {
private static final int DEFAULT_SIZE = 24;
private JComboBox<String> faceCombo;
private JLabel label;
public ComboBoxFrame() {
// add the sample text label
label = new JLabel("The quick brown fox jumps over the lazy dog");
label.setFont(new Font("Serif", Font.PLAIN, DEFAULT_SIZE));
add(label, BorderLayout.CENTER);
// make a combo box and face names
faceCombo = new JComboBox<>();
faceCombo.addItem("Serif");
faceCombo.addItem("SansSerif");
faceCombo.addItem("Monospaced");
faceCombo.addItem("Dialog");
faceCombo.addItem("DialogInput");
// the combo box listener changes the label font to the selected face name
faceCombo.addActionListener(e -> label.setFont(new Font(faceCombo.getItemAt(
faceCombo.getSelectedIndex()), Font.PLAIN, DEFAULT_SIZE)
));
// add combo box to a panel at the frame's southern border
JPanel comboPanel = new JPanel();
comboPanel.add(faceCombo);
add(comboPanel, BorderLayout.SOUTH);
pack();
}
}