码迷,mamicode.com
首页 > 其他好文 > 详细

用NULL布局为什么不能显示

时间:2016-09-06 19:52:30      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;

class WinBox extends JFrame{
    JLabel xm,xb,zy;
    JTextField tf1,tf2;
    JComboBox jbox;
    public WinBox(){
    init();
    setLayout(null);
    setVisible(true);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
    void init(){
        xm=new JLabel("姓名:");
        add(xm);
        setBounds(30, 30, 38,30 );
        
        xb=new JLabel("性别:");
        add(xb);
        setBounds(30, 70, 38, 30);
        
        zy=new JLabel("职业:");
        add(zy);
        setBounds(30, 110, 38, 30);
        
        tf1=new JTextField(30);
        add(tf1);
        setBounds(88, 30, 38, 30);
        
        jbox=new JComboBox();
        jbox.addItem("男");
        jbox.addItem("女");
        add(jbox);
        setBounds(88, 70, 38, 30);
        
        tf2=new JTextField(30);
        add(tf2);
        setBounds(88, 110, 38, 30);
        
    }
    
}
public class NullLayoutDemo {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
     WinBox win=new WinBox();
     win.setBounds(100,100,380,280);
     win.setTitle("盒式嵌套布局");
    }

}

 

在线跪求啊!!!

用NULL布局为什么不能显示

标签:

原文地址:http://www.cnblogs.com/creazybeauty/p/5846950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!