其他分享
首页 > 其他分享> > 窗体

窗体

作者:互联网

窗体

1.显示窗口 setVisible(true);

2.设置单击关闭窗口按钮操作:退出应用系统 setDefaultCloseOperation(EXIT_ON_CLOSE) (WindowConstants.DO_NOTHING_ON_CLOSE; 不做任何动作。WindowConstants.DISPOSE_ON_CLOSE; 关闭窗口,释放资源。 WindowConstants.HIDE_ON_CLOSE;隐藏窗口。)

3.setVisible(true); //显示窗体

4.setLocationRelativeTo(null);//窗体显示在屏幕中央

5.setSize(w,h);//设置窗体大小

6.setResizable(true 或者 false);//可以自由拖动窗体大小

package src1;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class Prectice1 extends JFrame
{
 JPanel p;
 JLabel lab1;
public Prectice1()
  {
init();

}
public void init()
{
p=new JPanel();
lab1=new JLabel("hello world");
p.add(lab1);
p.setVisible(true);
this.getContentPane().add(p);//将中间容器p设置为当前窗体的面板.
this.setDefaultCloseOperation(EXIT_ON_CLOSE);//设置单击关闭窗口按钮操作:退出应用系统
this.setResizable(false);//可以自由拖动窗体大小
this.setSize(410,300);//设置窗体大小
this.setLocationRelativeTo(null);//窗体显示在屏幕中央
this.setVisible(true); //显示窗体
}
   public static void main(String[] args)
  {
Prectice1 prectice1=new Prectice1();
}
}
 

标签:容器,JFrame,窗体,组件,CLOSE,true
来源: https://www.cnblogs.com/zjwcoblogs/p/16246998.html