会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
spring学习笔记
java例程练习(布局管理器[FlowLayout])
//FlowLayout,Panel类的默认布局管理器 import java.awt.*; public class TestLayout { public static void main(String[] args) { Frame f = new Frame("Flow Layout"); Button b1 = new Button("OK"); Button b2 = new Button("Open"); Button b3 = new Button("Close"); f.setLayout(new FlowLayout()); //f.setLayout(new FlowLayout(FlowLayout.LEFT)); //f.setLayout(new FlowLayout(FlowLayout.LEFT,40,50)); f.add(b1); f.add(b2); f.add(b3); f.setSize(100, 100); f.setVisible(true); } }
//FlowLayout import java.awt.*; public class TestFlowLayout2 { public static void main(String[] args) { Frame f = new Frame("java Frame"); FlowLayout l = new FlowLayout(FlowLayout.CENTER, 20, 40); f.setLayout(l); f.setLocation(300, 400); f.setSize(300, 200); f.setBackground(new Color(204, 204, 255)); for(int i = 0; i <= 7; i++) { f.add(new Button("BUTTON")); } f.setVisible(true); } }
posted on
2012-05-06 15:54
spring学习笔记
阅读(
971
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
联系
订阅
管理
公告