java 图形界面设置button的大小

publicclassEx{publicstaticvoidmain(Stringargs[])throwsException{JFrameframe=newJFrame... public class Ex{
public static void main(String args[])throws Exception{
JFrame frame=new JFrame("BUTTON");
frame.setSize(1000,1000);
frame.setLocation(300,200);
JButton button = new JButton("clieck me");
button.setSize(20,20);
frame.add(button);
frame.setVisible(true);
}
}
这个为什么没能设置button的大小,始终都是充满窗口的
展开
 我来答
yugi111
推荐于2017-09-03 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部
package image;

import java.awt.BorderLayout;
import java.awt.FlowLayout;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;

public class Ex
{
public static void main ( String args[] )
{
JFrame frame = new JFrame ("BUTTON");
JButton button = new JButton ("clieck me");
frame.setLayout (null);
button.setBounds (( 800 - 100 ) / 2, ( 600 - 20 ) / 2, 100, 20);
frame.setSize (800, 600);
frame.setLocation (300, 200);
frame.add (button);
frame.setLocationRelativeTo (null);
frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
frame.setVisible (true);
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式