a- package com.fmi110;
- import java.awt.Frame;
- public class FrameDemo {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- //创建窗体,最初不可见
- Frame f = new Frame();
- //调用方法,设置窗口可见 setVisible()
- f.setVisible(true);
- //设置窗体大小 setSize(x,y),单位像素 设置窗体位置 setLocation(x,y); 以左上角坐标为原点
- f.setSize(400,300);
- // f.getComponentAt(900,400);
- f.setLocation(300, 200);
- //设置窗口名称 setTitle(String titleName)
- f.setTitle("蜂蜜第一窗");
-
- //设置边界 setBound(x,y,width,height);
- f.setBounds(100,200,200,200);
- }
- }
复制代码
|
|