赞
踩
主要使用元素规则类 尺寸 字体 布局
2.javax.swing:升级的界面开发包
主要使用可视化组件类 窗体 按钮
java.awt:
Flowlayout:流式布局类
java.swing:
设置标题 尺寸 关闭选项 布局 可视化
- package tky1013;
-
-
- import javax.swing.*;
- import java.awt.*;
-
- public class RegisterUI {
- public void showUI(){
- JFrame jf =new JFrame();
- jf.setTitle("注册界面");
- jf.setSize(380,500);
- jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- FlowLayout flow=new FlowLayout();
- jf.setLayout(flow);
-
- ImageIcon icon =new ImageIcon("C:\\Users\\kone\\Desktop\\e07ef09c155a1ded96dbbc155a34845.png");
- JLabel iconJla =new JLabel(icon);
-
- JLabel nameJla = new JLabel ("用户名:");
- JTextField nameJtf = new JTextField (30);
-
- JLabel phoneJla = new JLabel ("手机号:");
- JTextField phoneJtf = new JTextField (30);
-
- JLabel pwdJla =new JLabel("密 码:");
- JTextField pwdJtf=new JTextField(30);
-
-
- JButton btn=new JButton("注册");
-
- jf.add(iconJla);
- jf.add(nameJla);
- jf.add(nameJtf);
- jf.add(phoneJla);
- jf.add(phoneJtf);
- jf.add(pwdJla);
- jf.add(pwdJtf);
- jf.add(btn);
-
- jf.setVisible (true);
- }
-
- public static void main(String[] args) {
- RegisterUI RegisterUI= new RegisterUI();
- RegisterUI.showUI();
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。