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

绝对布局

时间:2021-05-24 16:08:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:extends   b2b   ued   ati   port   ntp   按钮   set   容器   

package jueduibuju;

import java.awt.Container;

import javax.swing.*;

public class Demo extends JFrame{
    public Demo() {
        setBounds(100, 100, 200, 150);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        Container container=getContentPane();
        
        container.setLayout(null);//将容器的布局设为绝对布局
        JButton b1Button=new JButton("按钮1"),b2Button=new JButton("按钮2");//创建两个按钮
        b1Button.setBounds(10, 30, 80, 30);//设置按钮在容器中的坐标和大小
        b2Button.setBounds(60, 70, 100, 20);
        container.add(b1Button);
        container.add(b2Button);
        
        setVisible(true);
        
    }
    
    public static void main(String[] args) {
        new Demo();
    }
}

 

绝对布局

标签:extends   b2b   ued   ati   port   ntp   按钮   set   容器   

原文地址:https://www.cnblogs.com/mlzhang/p/14784591.html

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