博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
选项框
阅读量:5060 次
发布时间:2019-06-12

本文共 1664 字,大约阅读时间需要 5 分钟。

一、代码如下

package www.tainiu.gui;import java.awt.GridLayout;import javax.swing.ButtonGroup;import javax.swing.JButton;import javax.swing.JCheckBox;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JPanel;import javax.swing.JRadioButton;public class ac__XuanXiangKuang__V1 extends JFrame {	JPanel jp1,jp2,jp3;	JLabel jl1,jl2;	JButton jb1,jb2;	JCheckBox jcb1,jcb2,jcb3;	JRadioButton jrb1,jrb2;	ButtonGroup by;	public static void main(String[] args) {		// TODO Auto-generated method stub		ac__XuanXiangKuang__V1 xv= new ac__XuanXiangKuang__V1();	}		public ac__XuanXiangKuang__V1() {		// TODO Auto-generated constructor stub		//创建组件		this.jp1= new JPanel();		this.jp2= new JPanel();		this.jp3= new JPanel();		this.jl1= new JLabel("你喜欢的运动");		this.jl2= new JLabel("你的性别");		this.jb1= new JButton("注册用户");		this.jb2= new JButton("取消注册");		this.jcb1= new JCheckBox("足球");		this.jcb2= new JCheckBox("篮球");		this.jcb3= new JCheckBox("网球");				this.jrb1= new JRadioButton("男");		this.jrb2= new JRadioButton("女");		ButtonGroup bg= new ButtonGroup();		bg.add(jb1);		bg.add(jb1);				//设置管理器		this.setLayout(new GridLayout(3, 1));		//添加组件		this.jp1.add(this.jl1);		this.jp1.add(this.jcb1);		this.jp1.add(this.jcb2);		this.jp1.add(this.jcb3);				this.jp2.add(this.jl2);		this.jp2.add(this.jrb1);		this.jp2.add(this.jrb2);				this.jp3.add(jb1);		this.jp3.add(jb2);						this.add(this.jp1);		this.add(this.jp2);		this.add(this.jp3);				//设置容器属性		this.setSize(300, 150);		this.setLocation(200, 200);		//this.setResizable(false);		this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);		this.setVisible(true);			}		}

 

转载于:https://www.cnblogs.com/wujianbo123/p/7553706.html

你可能感兴趣的文章
SVN使用教程总结
查看>>
SQL中varchar和nvarchar有什么区别?
查看>>
OpenCV矩阵运算总结
查看>>
Java Build Practice 4:Extend and Invoke Ant API
查看>>
[转] Transformer图解
查看>>
FreeBSD方式安装 MAC OSX
查看>>
Linux 根文件系统制作
查看>>
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
linux swoole
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
更改git仓库地址
查看>>
有标号DAG计数 [容斥原理 子集反演 组合数学 fft]
查看>>
Recipe 1.4. Reversing a String by Words or Characters
查看>>
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
查看>>
sql注入
查看>>
「破解」Xposed强
查看>>