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的大小,始终都是充满窗口的 展开
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的大小,始终都是充满窗口的 展开
展开全部
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);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询