大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
小菜一枚,刚接触Java,想写个注册界面,但却遇到一个奇怪问题:代码如下:
public void frame()
{
this.frame = new JFrame(“用户注册”);
//窗体基本属性
this.frame.setSize(600, 400);
this.frame.setLocationRelativeTo(null);
this.frame.setVisible(true);
this.frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
//设置主面板,相当于外层div
JPanel jp = new JPanel(new BorderLayout());
//东西南北中,面板
JPanel jp1 = new JPanel(new FlowLayout());
JPanel jp2 = new JPanel(new FlowLayout());
JPanel jp3 = new JPanel(new GridLayout(10,2));
JPanel jp4 = new JPanel(new FlowLayout());
JPanel jp5 = new JPanel(new FlowLayout());
//加入主面板
jp.add(BorderLayout.NORTH,jp1);
jp.add(BorderLayout.SOUTH,jp2);
jp.add(BorderLayout.CENTER,jp3);
jp.add(BorderLayout.EAST,jp4);
jp.add(BorderLayout.WEST,jp5);
//标题
JLabel jl1 = new JLabel(“用户注册”,SwingConstants.CENTER);
jp1.add(jl1);
//中间面板
JButton jb2= new JButton(“Btn”);
JTextField jt = new JTextField(“usrname”);
JButton jb1 = new JButton(“abc”);
jp3.add(jt);
jp3.add(jb1);
jp3.add(jb2);
this.container = this.frame.getContentPane();
this.container.setBackground(Color.white);
this.container.add(jp);
}
主要思路:
一个主Jpanel,边界布局
5个子Panel,东西南北中
最后将主Panel加入Container中,但最后执行结果,Frame显示却是空白,如图:
新手,老鸟请教,谢谢!
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/230959.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...