Swing中的绝对布局

package jframe;
import java.awt.Button;
import java.awt.Container;
import javax.swing.*;

public class jframe extends JFrame{

/**
 * 
 */
private static final long serialVersionUID = 1L;
public static void jframe(){
    JFrame jf = new JFrame("test");
    Container con = jf.getContentPane();
    con.setLayout(null);                        //取消布局管理器
    Button b1 = new Button("button1");          //实例化一个按钮
    Button b2 = new Button("button2");          //实例化一个按钮
    b1.setBounds(20, 30, 100, 30);              //设置位置与大小
    b2.setBounds(100, 100, 100, 30);            //设置位置与大小
    jf.setSize(800, 500);
    jf.add(b1);
    jf.add(b2);
    jf.setVisible(true);                        //显示窗体
}
public static void main(String[] args) {
    jframe();
}

}

clipboard.png


Cheney
95 声望8 粉丝

初学者