如何在Java Swing程序中使用组合框
说明
以下示例展示了如何在Java Swing程序中使用组合框。
我们正在使用以下 API。
-
JComboBox : 创建标准组合框。
-
JCheckBox.setSelectedIndex(index); : 选择一个项目。
-
JCheckBox.getSelectedItem(); : 获取选定的项目。
代码示例
package com.yiidian;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class SwingTester {
public static void main(String[] args) {
createWindow();
}
private static void createWindow() {
JFrame frame = new JFrame("一点教程网:Swing Tester");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
createUI(frame);
frame.setSize(560, 200);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private static void createUI(final JFrame frame){
JPanel panel = new JPanel();
LayoutManager layout = new FlowLayout();
panel.setLayout(layout);
String[] numbers = {"One", "Two", "Three", "Four", "Five"};
JComboBox<String> comboBox = new JComboBox<>(numbers);
comboBox.setSelectedIndex(3);
comboBox.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JComboBox combo = (JComboBox)e.getSource();
JOptionPane.showMessageDialog(frame,combo.getSelectedItem());
}
});
panel.add(comboBox);
frame.getContentPane().add(panel, BorderLayout.CENTER);
}
}
执行效果如下:
热门文章
优秀文章