流式佈局管理器
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Test extends JFrame{//把需要的元件全部在這裡定義
JButton [] an={null,null,null,null,null,null,null,null};
public static void main(String[] args){
Test lx=new Test();
}
public Test(){
an[0]=new JButton("話梅");
an[1]=new JButton("果脯");
an[2]=new JButton("薯片");
an[3]=new JButton("餅乾");
an[4]=new JButton("巧克力");
an[5]=new JButton("腰果");
an[6]=new JButton("鍋巴");
an[7]=new JButton("開心果");
this.setLayout(new FlowLayout());//由於java預設的是邊界佈局管理器,新增布局管理器,以免出現錯誤
//this.setLayout(new FlowLayout(FlowLayout.LEFT));//按鈕向左對齊
//this.setLayout(new FlowLayout(FlowLayout.RIGHT));//按鈕向右對齊
this.add(an[0]);
this.add(an[1]);
this.add(an[2]);
this.add(an[3]);
this.add(an[4]);
this.add(an[5]);
this.add(an[6]);
this.add(an[7]);
this.setTitle("流式佈局FlowLayout");
this.setSize(380,320);
this.setLocation(200,200);
//this.setResizable(false);//不能改變介面大小
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
}
相關文章
- 移動佈局基礎之 流式佈局
- 自定義流式佈局:ViewGroup的測量與佈局View
- 常用佈局管理器
- 邊界佈局管理器
- 網格佈局管理器
- 快速利用RecyclerView的LayoutManager搭建流式佈局View
- Android實現RecyclerView巢狀流式佈局AndroidView巢狀
- JavaGUI - [03] LayoutManager佈局管理器JavaGUI
- 直播網站程式原始碼,FlowLayoutManager 流式佈局網站原始碼
- flutter系列之:在flutter中使用流式佈局Flutter
- Tkinter (46) 佈局幾何管理器
- Android ViewGroup&&RadioGroup 換行流式標籤佈局AndroidView
- 初略講解Flutter的Wrap和Flow(流式佈局)Flutter
- 前端成神之路-移動web開發_流式佈局前端Web
- 快速學習掌握移動Web開釋出局總結(流式佈局+flex伸縮佈局+rem佈局+Boostrap框架 )(更新中)WebFlexREM框架
- 短視訊平臺原始碼,自定義流式佈局--kotlin原始碼Kotlin
- Android自定義View實現流式佈局(熱門標籤效果)AndroidView
- win10 資源管理器佈局怎麼設定_win10檔案資源管理器介面佈局設定方法Win10
- 2020-12-17 html、css面試題3: 水平垂直居中,左右固定中間自適應 三欄佈局,靜態佈局、自適應佈局、流式佈局、響應式佈局、彈性佈局,IE中常見的相容性問題,清空陣列的方法HTMLCSS面試題陣列
- css佈局-float佈局CSS
- CSS佈局 --- 居中佈局CSS
- Flutter文字標籤TextTagWidget,搜尋記錄流式佈局顯示文字標籤Flutter
- 一對一直播系統原始碼,Flexbox+ReclyclerView實現流式佈局原始碼FlexView
- 居中佈局、三欄佈局
- java:佈局方法(流佈局)Java
- qt 佈局---表單佈局QT
- CSS佈局之三欄佈局CSS
- CSS佈局 --- 自適應佈局CSS
- CSS佈局 --- 等寬&等高佈局CSS
- CSS 佈局之水平居中佈局CSS
- 彈性佈局(伸縮佈局)
- 浮動佈局 和 flex佈局Flex
- CSS經典佈局——聖盃佈局與雙飛翼佈局CSS
- CSS佈局–聖盃佈局和雙飛翼佈局以及使用Flex實現聖盃佈局CSSFlex
- 網頁佈局------幾種佈局方式網頁
- dispaly的Grid佈局與Flex佈局Flex
- css佈局系列1——盒模型佈局CSS模型
- CSS 三欄佈局之聖盃佈局和雙飛翼佈局CSS