首页 | 联系我们 | 叶凡网络官方QQ群:323842844
游客,欢迎您! 请登录 免费注册 忘记密码
您所在的位置:首页 > 开发语言 > Java开发 > 正文

Layout (FlowLayout使用例子)

作者:cocomyyz 来源: 日期:2013-9-12 0:31:07 人气:1 加入收藏 评论:0 标签:java

import java.awt.FlowLayout;

import javax.swing.JButton;
import javax.swing.JFrame;

/**
* FlowLayout使用例子
* @author brj
*
*/
public class TestFlowLayout extends JFrame {
public TestFlowLayout() {
  this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  //设置关闭时结束程序
 
  FlowLayout layout = new FlowLayout(FlowLayout.RIGHT, 20, 30);
  //右对齐,水平和垂直间隙分别是20,30
 
  setLayout(layout);
  JButton btn = new JButton("btn1");
  getContentPane().add(btn);

  btn = new JButton("btn2");
  getContentPane().add(btn);

  btn = new JButton("btn3");
  getContentPane().add(btn);

  pack();
}


public static void main(String[] args) {
  JFrame frame = new TestFlowLayout();
  frame.setVisible(true);
}

}


本文网址:http://www.mingyangnet.com/html/java/230.html
读完这篇文章后,您心情如何?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
更多>>网友评论
发表评论
编辑推荐
  • 没有资料