概述
package com.company; import javax.swing.*; import java.awt.*; public class Main extends JFrame { public Main(){ setBounds(100,100,200,150); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); Container c=getContentPane(); c.setLayout(null);//将容器的布局设为绝对布局 JButton b1=new JButton("按钮1"),b2=new JButton("按钮2");//创建两个按钮 b1.setBounds(10,30,80,30);//设置按钮在容器中的坐标和大小 b2.setBounds(60,70,100,20); c.add(b1); c.add(b2); setVisible(true); } public static void main(String[] args) { new Main(); // write your code here } }
转载于:https://www.cnblogs.com/llhhcc/p/10087816.html
最后
以上就是年轻睫毛膏为你收集整理的绝对布局,setLayout(null)的全部内容,希望文章能够帮你解决绝对布局,setLayout(null)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复