每一个gui程序中必须包含一个什么组件
推荐于2016-08-30
展开全部
按照你的要求建立的GUI程序,实现了五个组件:JButton,JRadioButton,JCheckBox,JLabel和JTextField。
完整的程序如下:
import java.awt.BorderLayout;
import javax.swing.*;
public class E extends JFrame{
JPanel jp1=new JPanel();
JPanel jp2=new JPanel();
JButton jb1=new JButton("确定");
JButton jb2=new JButton("取消");
JRadioButton jrb1=new JRadioButton("红色",true);
JRadioButton jrb2=new JRadioButton("绿色");
JRadioButton jrb3=new JRadioButton("蓝色");
ButtonGroup bp=new ButtonGroup();
JCheckBox jcb1=new JCheckBox("颜色",true);
JCheckBox jcb2=new JCheckBox("类型",false);
JLabel jl=new JLabel("颜色名称:");
JTextField jtf=new JTextField(10);
E(){
完整的程序如下:
import java.awt.BorderLayout;
import javax.swing.*;
public class E extends JFrame{
JPanel jp1=new JPanel();
JPanel jp2=new JPanel();
JButton jb1=new JButton("确定");
JButton jb2=new JButton("取消");
JRadioButton jrb1=new JRadioButton("红色",true);
JRadioButton jrb2=new JRadioButton("绿色");
JRadioButton jrb3=new JRadioButton("蓝色");
ButtonGroup bp=new ButtonGroup();
JCheckBox jcb1=new JCheckBox("颜色",true);
JCheckBox jcb2=new JCheckBox("类型",false);
JLabel jl=new JLabel("颜色名称:");
JTextField jtf=new JTextField(10);
E(){
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询