Java編程使用箱式布局管理器示例【基于swing組件】
本文實(shí)例講述了Java編程使用箱式布局管理器。分享給大家供大家參考,具體如下:
先來看看運(yùn)行效果:

完整代碼如下:
package awtDemo;
import java.awt.BorderLayout;
import java.awt.Container;
import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
/**
* 使用箱式布局管理器
*
* @author HAN
*
*/
public class BoxLayout_1 extends JFrame {
/**
*
*/
private static final long serialVersionUID = 6896925750596855002L;
public BoxLayout_1() {
// TODO Auto-generated constructor stub
Container container = getContentPane();
Box box = Box.createVerticalBox();
container.add(box, BorderLayout.NORTH);
box.add(Box.createVerticalStrut(5));
Box topicBox = Box.createHorizontalBox();
box.add(topicBox);
topicBox.setAlignmentX(1);
topicBox.add(Box.createHorizontalStrut(5));
JLabel topicLabel = new JLabel("主題:");
topicBox.add(topicLabel);
topicBox.add(Box.createHorizontalStrut(5));
JTextField topicTextField = new JTextField(30);
topicBox.add(topicTextField);
Box box2 = Box.createVerticalBox();
container.add(box2, BorderLayout.CENTER);
Box contentBox = Box.createHorizontalBox();
contentBox.setAlignmentX(1);
box2.add(Box.createVerticalStrut(5));
box2.add(contentBox);
contentBox.add(Box.createHorizontalStrut(5));
JLabel contentLabel = new JLabel("內(nèi)容:");
contentLabel.setAlignmentY(0);
contentBox.add(contentLabel);
contentBox.add(Box.createHorizontalStrut(5));
StringBuilder stringBuilder = new StringBuilder();
String contentString = new String("利用箱式布局管理器實(shí)現(xiàn)組件的右對齊"
+ "和上對齊,以及控制組件之間的間距!");
stringBuilder.append(contentString);
stringBuilder.append("\n");
stringBuilder.append(contentString);
contentString = stringBuilder.toString();
JTextArea contentTextArea = new JTextArea(contentString, 3, 30);
contentTextArea.setLineWrap(true);
JScrollPane scrollPane = new JScrollPane();
scrollPane.setAlignmentY(0);
scrollPane.setViewportView(contentTextArea);
contentBox.add(scrollPane);
contentBox.add(Box.createHorizontalStrut(5));
// System.out.println(contentTextArea.requestFocusInWindow());
box2.add(Box.createVerticalStrut(5));
JButton submitButton = new JButton("確定");
box2.add(submitButton);
submitButton.setAlignmentX(1);
box2.add(Box.createVerticalStrut(5));
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
BoxLayout_1 frame = new BoxLayout_1();
frame.setTitle("www.dhdzp.com - 使用箱式布局管理器");
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
}
}
更多關(guān)于java算法相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Java數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Java操作DOM節(jié)點(diǎn)技巧總結(jié)》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》
希望本文所述對大家java程序設(shè)計(jì)有所幫助。
相關(guān)文章
Spring事務(wù)處理Transactional,鎖同步和并發(fā)線程
本文詳細(xì)講解了Spring事務(wù)處理Transactional,鎖同步和并發(fā)線程。對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-12-12
Java使用BigDecimal精確運(yùn)算浮點(diǎn)數(shù)
這篇文章主要介紹了Java使用BigDecimal精確運(yùn)算浮點(diǎn)數(shù),幫助大家更好的處理浮點(diǎn)數(shù)數(shù)據(jù),感興趣的朋友可以了解下2020-10-10
Maven實(shí)現(xiàn)自己的starter依賴
本文主要介紹了Maven實(shí)現(xiàn)自己的starter依賴,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-04-04
全面解析SpringBoot自動(dòng)配置的實(shí)現(xiàn)原理
這篇文章主要介紹了全面解析SpringBoot自動(dòng)配置的實(shí)現(xiàn)原理的相關(guān)資料,需要的朋友可以參考下2017-05-05

