赞
踩
目录
类:JRadioButton ButtonGroup
说明:JRadioButton 是一个单选按钮,需要将单选按钮加入到按钮组中
构造方法:
示例:
- import javax.swing.*;
- import java.awt.*;
-
- public class JradioButton {
- public static void main(String[] args){
- JFrame jf=new JFrame("JRadioButton");
- jf.setLayout(new FlowLayout());
- jf.setBounds(400,300,400,300);
-
- JRadioButton jrb1=new JRadioButton("男");
- JRadioButton jrb2=new JRadioButton("女");
- ButtonGroup group=new ButtonGroup();
- group.add(jrb1);
- group.add(jrb2);
-
- jf.add(jrb1);
- jf.add(jrb2);
-
- jf.setVisible(true);
- jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- }
- }
类:JChenckBox
构造方法:
示例:
- import javax.swing.*;
- import java.awt.*;
-
- public class JcheckBox {
- public static void main(String[] args) {
- JFrame jf = new JFrame("JRadioButton");
- jf.setLayout(new FlowLayout());
- jf.setBounds(400, 300, 400, 300);
-
- JCheckBox box = new JCheckBox("睡觉", true);
- JCheckBox box1 = new JCheckBox("吃饭", false);
- JCheckBox box2 = new JCheckBox("跳舞", true);
- JCheckBox box3 = new JCheckBox("玩游戏", false);
- jf.add(box);
- jf.add(box1);
- jf.add(box2);
- jf.add(box3);
-
- jf.setVisible(true);
- jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- }
- }
类:JComboBox
构造方法:
方法:
addItem 添加下拉内容
示例:
- import javax.swing.*;
- import java.awt.*;
-
- public class JCombobox {
- public static void main(String[] args) {
- JFrame jf = new JFrame("JRadioButton");
- jf.setLayout(new FlowLayout());
- jf.setBounds(400, 300, 400, 300);
-
- JComboBox box=new JComboBox();
- box.addItem("高中");
- box.addItem("大学");
- box.addItem("研究生");
- box.addItem("博士");
- jf.add(box);
-
- jf.setVisible(true);
- jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。