Java这段代码中添加了setLayout(null);但是还是不能用setBounds()来控制按钮的大小和位置,为什么?
importjava.awt.*;importjavax.swing.*;publicclassTestJFrameextendsJFrame{publicvoidCre...
import java.awt.*;
import javax.swing.*;
public class TestJFrame extends JFrame {
public void CreateJFrame(String title)
{
JFrame jf=new JFrame(title);
Container container=jf.getContentPane();
jf.setVisible(true);
setLayout(null);
jf.setBounds(30,40,300,400);
container.setBackground(Color.white);
jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JButton jb=new JButton("开始");
jb.setBounds(10,10,100,20);
container.add(jb);
}
public static void main(String[] args)
{
new TestJFrame().CreateJFrame("Java时钟程序");
}
}
搜索
复制 展开
import javax.swing.*;
public class TestJFrame extends JFrame {
public void CreateJFrame(String title)
{
JFrame jf=new JFrame(title);
Container container=jf.getContentPane();
jf.setVisible(true);
setLayout(null);
jf.setBounds(30,40,300,400);
container.setBackground(Color.white);
jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JButton jb=new JButton("开始");
jb.setBounds(10,10,100,20);
container.add(jb);
}
public static void main(String[] args)
{
new TestJFrame().CreateJFrame("Java时钟程序");
}
}
搜索
复制 展开
1个回答
推荐于2018-04-05
展开全部
改成jf.setLayout(null);
你把按钮加在jf上,却调用当前上下文的setLayout()....
你把按钮加在jf上,却调用当前上下文的setLayout()....
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询