Panel中的布局管理,使用flowlayout布局管理器

Panel中的布局管理,使用flowlayout布局管理器

 

import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Panel;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import javax.swing.*;

/**
* 在panel中加入三个按钮,按钮上面分别显示打开,关闭,返回,在一行内排开
* @author 行者
*下午3:41:04
* 2019年3月7日
*/
public class ThreeButtonsFrameTest {

public static void main(String[] args){
JFrame frame= new JFrame("My JFrame");
frame.setSize(400, 500);
frame.getContentPane().setBackground(Color.RED);
// 设置JFRame的布局管理器为flowlayout
frame.setLayout(new FlowLayout(FlowLayout.CENTER,50,50));
// 创建一个jpanel的实例
JPanel contentPane=new JPanel();
contentPane.setSize(100,100);
//设置JPanel的布局管理为FlowLayout
contentPane.setLayout(new FlowLayout());
contentPane.setBackground(Color.yellow);

JButton btn1,btn2,btn3;
btn1=new JButton("打开");
btn2=new JButton("关闭");
btn3=new JButton("返回");
contentPane.add(btn1);
contentPane.add(btn2);
contentPane.add(btn3);

// 将面板Jpanel添加到JFrame中,使用JFrame的布局管理器
frame.add(contentPane);
//显示Jframe
frame.setVisible(true);

BufferedReader intemp=new BufferedReader(new InputStreamReader(System.in));
System.out.println("press return key to exit");
try{
String s=intemp.readLine();
}catch(IOException e){
System.out.println("IOException");
}
System.exit(0);
}
}

 

 

posted @ 2019-03-07 16:18  逐梦Jack  阅读(492)  评论(0编辑  收藏  举报