FlowLayout布局
package GuiOper;/* * 使用FlowLayout创建的对象通常为流布局对象,他的默认布局方式是从上到下,由左到右,居中排列布件 * 组件之间水平和垂直间隔为5个像素,组件的大小为默认的最佳大小。此布局下如果改变组件大小,需调用组件的setPreferredSize(Dimension preferredSize)方法 * * *容器使用布局对象管理组件布
·
package GuiOper;
/*
* 使用FlowLayout创建的对象通常为流布局对象,他的默认布局方式是从上到下,由左到右,居中排列布件
* 组件之间水平和垂直间隔为5个像素,组件的大小为默认的最佳大小。此布局下如果改变组件大小,需调用组件的setPreferredSize(Dimension preferredSize)方法
*
*
*容器使用布局对象管理组件布局的基本步骤是:创建容器对象,创建布局对象,调用容器的setLayout(布局对象)方法
*设置容器所使用的布局,将组件添加到容器中,添加时需按指定的布局方式添加。
*/
import javax.swing.*;
import java.awt.*;
public class flowLayoutBuJu {
private JFrame f;
private JButton btn[]=new JButton[6];
private JTextField displayText;
public flowLayoutBuJu(){
init();
}
private void init(){
f=new JFrame("计算器");
f.setLayout(new FlowLayout());
f.setSize(300,200);
f.setResizable(false);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Font font2=new Font("宋体",Font.BOLD,20);
displayText=new JTextField();
displayText.setHorizontalAlignment(JTextField.RIGHT);
displayText.setFont(font2);
displayText.setText("文本框用于显示计算结果");
displayText.setEditable(false);
f.add(displayText);
String buttonLabel[]={"1","2","3","Clear","=","6"};
for(int i=0;i<6;i++)
{
btn[i]=new JButton(buttonLabel[i]);
btn[i].setFont(font2);
btn[i].setForeground(Color.blue);
}
// btn[4].setPreferredSize(new Dimension(60,75));
for(int i=0;i<6;i++)
{
f.add(btn[i]);
}
f.setVisible(true);
}
public static void main(String[] args)
{
flowLayoutBuJu t=new flowLayoutBuJu();
}
}
/*
* 使用FlowLayout创建的对象通常为流布局对象,他的默认布局方式是从上到下,由左到右,居中排列布件
* 组件之间水平和垂直间隔为5个像素,组件的大小为默认的最佳大小。此布局下如果改变组件大小,需调用组件的setPreferredSize(Dimension preferredSize)方法
*
*
*容器使用布局对象管理组件布局的基本步骤是:创建容器对象,创建布局对象,调用容器的setLayout(布局对象)方法
*设置容器所使用的布局,将组件添加到容器中,添加时需按指定的布局方式添加。
*/
import javax.swing.*;
import java.awt.*;
public class flowLayoutBuJu {
private JFrame f;
private JButton btn[]=new JButton[6];
private JTextField displayText;
public flowLayoutBuJu(){
init();
}
private void init(){
f=new JFrame("计算器");
f.setLayout(new FlowLayout());
f.setSize(300,200);
f.setResizable(false);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Font font2=new Font("宋体",Font.BOLD,20);
displayText=new JTextField();
displayText.setHorizontalAlignment(JTextField.RIGHT);
displayText.setFont(font2);
displayText.setText("文本框用于显示计算结果");
displayText.setEditable(false);
f.add(displayText);
String buttonLabel[]={"1","2","3","Clear","=","6"};
for(int i=0;i<6;i++)
{
btn[i]=new JButton(buttonLabel[i]);
btn[i].setFont(font2);
btn[i].setForeground(Color.blue);
}
// btn[4].setPreferredSize(new Dimension(60,75));
for(int i=0;i<6;i++)
{
f.add(btn[i]);
}
f.setVisible(true);
}
public static void main(String[] args)
{
flowLayoutBuJu t=new flowLayoutBuJu();
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)