11
1.JFrame的窗口容器的运用
方法名 | 说明 |
void setLayout(LayoutManager mg) | 设置当前窗体使用的布局管理器 |
void setTitle(String title) | 设置当前窗体的标题 |
void setBounds (int x,int y,int width,int hight) | 设置当前窗体距离桌面坐标原点的位置,x代 表横坐标,y代表纵坐标。当前窗体的大小: width 代表窗体的宽,height代表窗体的高 |
void setSize(int width,int height) | 设置当前窗体的宽和高 |
void setVisible(boolean b) | 设置当前窗体是否可见,参数值为truc、表示可见,为flash则表示隐藏 |
void setIconImage(Image image | 设置当前窗体的图标 |
Component add(Component c) | 将指定组件添加至当前窗体中 |
2.然后在eclipse中输入以下代码就会出现一个你设置的窗口快去震惊你的小伙伴吧!
public class JFrameExample{
public void init()(
//创建窗体对象
JFrame frame=new JFrame();
/1修改窗体图标为“android.gif”
Imagelcon ico=new Imagelcon(E://android.gif")//设置 JFrame 窗体的显示位置和大小
frame.setBounds(100.100,450,300);
/1设置窗体的标题
frame.setTitle("JFrame 窗体);
//设置窗体的图标
frame.setlconlmage(ico.getlmage());
//窗体显示
frame.setVisible(true);
public static void main(Stringl] args) (
JFrameExample jfe=new JFrameExample();
jfe.init();