See More

package com.bj; import java.awt.*; import javax.swing.*; public class FlowLayout_t extends JFrame { JButton jb1,jb2,jb3,jb4,jb5,jb6,jb7; public FlowLayout_t() { //´´½¨×é¼þ jb1=new JButton("ÕÅÈý"); jb2=new JButton("ÀîËÄ"); jb3=new JButton("ÍõÎå"); jb4=new JButton("ËïÁù"); jb5=new JButton("ÖÜÆß"); jb6=new JButton("¹ù°Ë"); jb7=new JButton("Áõ¾Å"); //Ìí¼Ó×é¼þ this.add(jb1); this.add(jb2); this.add(jb3); this.add(jb4); this.add(jb5); this.add(jb6); this.add(jb7); //ÉèÖò¼¾Ö¹ÜÀíÆ÷ //this.setLayout(new FlowLayout()); //this.setLayout(new FlowLayout(FlowLayout.LEFT)); this.setLayout(new FlowLayout(FlowLayout.LEFT)); //ÉèÖù̶¨´°¿Ú this.setResizable(false); //ÉèÖô°ÌåÊôÐÔ this.setTitle("¸¡¶¯²¼¾Ö°¸Àý"); this.setSize(300, 300); this.setLocation(200,200); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //ÏÔʾ this.setVisible(true); } public static void main(String[] args) { // TODO Auto-generated method stub FlowLayout_t f=new FlowLayout_t(); } }