91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Java中使用BoxLayout組件

發布時間:2021-04-01 17:35:05 來源:億速云 閱讀:240 作者:Leah 欄目:編程語言

怎么在Java中使用BoxLayout組件?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

BoxLayout 可以把控件依次進行水平或者垂直排列布局,這是通過參數 X_AXIS、Y_AXIS 來決定的。X_AXIS 表示水平排列,而 Y_AXIS 表示垂直排列。BoxLayout 的構造函數有兩個參數,一個參數定義使用該 BoxLayout 的容器,另一個參數是指定 BoxLayout 是采用水平還是垂直排列。下面是一個使用 BoxLayout排列控件的例子:

JPanel panel=new JPanel();
BoxLayout layout=new BoxLayout(panel, BoxLayout.X_AXIS);
panel.setLayout(layoout);
panel.add(new JButton("hello"));
panel.add(new JButton("wolrd"));

在實際應用中,為了在控件直接添加間隔,我們常常需要分隔器,它有以下幾種類型:

① Rigid area 是一種用戶可以定義水平和垂直尺寸的透明組件;
② strut 與 rigid area 類似,但是用戶只能定義一個方向的尺寸,即水平方向或者垂直方向,不能同時定義水平和垂直尺寸;
③ glue位于兩個控件之間時,它會盡可能的占據兩個控件之間的多余空間,從而將兩個控件擠到兩邊;
④ Filler 是 Box 的內部類,它與 rigid area 相似,都可以指定水平或者垂直的尺寸,但是它可以設置最小,最大和優先尺寸。

下面是一個測試用例:

BoxLayoutDemo.java

package awtDemo;
import java.awt.Dimension;
import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.DefaultListModel;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.ListSelectionModel;
@SuppressWarnings("serial")
public class BoxLayoutDemo extends JPanel {
  JPanel sportPanel;
  JPanel queryPanel;
  JPanel middlePanel;
  public BoxLayoutDemo() {
    // 主面板由3個子面板組成,在水平方向排列
    setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
    this.setSportPanel();
    this.setMiddlePanel();
    this.setQueryPanel();
    this.add(sportPanel);
    this.add(middlePanel);
    this.add(queryPanel);
  }
  private void setSportPanel() {
    System.out.println("setSportPanel called");
    //本函數內包含以下兩個控件
    JLabel sourceLabel;//文字標簽
    JScrollPane sourceListScroller;//滾動條
    //文字標簽
    sourceLabel = new JLabel("運動項目");
    sourceLabel.setAlignmentY(TOP_ALIGNMENT);
    sourceLabel.setBorder(BorderFactory.createEmptyBorder(4, 5, 0, 5));
    // 創建一個列表,包含運動項目
    DefaultListModel<String> listModel = new DefaultListModel<String>();
    listModel.addElement("100米");
    listModel.addElement("200米");
    listModel.addElement("400米");
    listModel.addElement("跳遠");
    listModel.addElement("跳高");
    listModel.addElement("鉛球");
    JList<String> sourceList = new JList<String>(listModel);
    sourceList
        .setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    sourceList.setVisibleRowCount(5);//初始狀態保持5行可見
    //滾動條
    sourceListScroller = new JScrollPane(sourceList);
    sourceListScroller
        .setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
    sourceListScroller.setAlignmentY(TOP_ALIGNMENT);
    //開始布局主面板
    sportPanel = new JPanel();
    sportPanel.setLayout(new BoxLayout(sportPanel, BoxLayout.Y_AXIS));// 垂直布局
    sportPanel.setBorder(BorderFactory.createBevelBorder(1));
    sportPanel.add(sourceLabel);// 加入文字標簽到
    sportPanel.add(sourceListScroller);// 加入運動項目列表
  }
  private void setMiddlePanel() {
    //本函數包含2個按鈕
    JButton toTargetButton = new JButton(">>");
    JButton toSourceButton = new JButton("<<");
    //布局主面板
    middlePanel = new JPanel();
    middlePanel.setBorder(BorderFactory.createBevelBorder(1));
    middlePanel.setLayout(new BoxLayout(middlePanel, BoxLayout.Y_AXIS));//主面板為垂直布局
    middlePanel.add(toTargetButton);// 添加第一個按鈕>>
    middlePanel.add(Box.createRigidArea(new Dimension(15, 15)));// 中間添加一個看不見的rigidArea
    middlePanel.add(toSourceButton);// 添加第二個按鈕<<
  }
  private void setQueryPanel() {
    //本函數包含2個控件
    JLabel targetLabel;
    JScrollPane targetListScroller;
    // 文字標簽
    targetLabel = new JLabel("查詢項目");
    targetLabel.setAlignmentY(TOP_ALIGNMENT);
    targetLabel.setBorder(BorderFactory.createEmptyBorder(4, 5, 0, 5));
    // 創建列表查詢項目
    DefaultListModel<String> targetListModel = new DefaultListModel<String>();
    targetListModel.addElement("100米");
    JList<String> targetList = new JList<String>(targetListModel);
    targetList
        .setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    //滾動條
    targetListScroller = new JScrollPane(targetList);
    targetListScroller
        .setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
    targetListScroller.setAlignmentY(TOP_ALIGNMENT);
    //設置主面板布局
    queryPanel = new JPanel();
    queryPanel.setLayout(new BoxLayout(queryPanel, BoxLayout.Y_AXIS));// 垂直布局
    queryPanel.setBorder(BorderFactory.createBevelBorder(1));
    queryPanel.add(targetLabel);//添加文字標簽
    queryPanel.add(targetListScroller);//添加滾動條
  }
  public static void main(String[] args) {
    JFrame frame = new JFrame("BoxlayoutDemo - www.jb51.net");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(new BoxLayoutDemo());
    frame.pack();
    // frame.repaint();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
  }
}

關于怎么在Java中使用BoxLayout組件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

栾川县| 福贡县| 卫辉市| 石景山区| 邓州市| 文成县| 敦煌市| 庄浪县| 珠海市| 安福县| 怀化市| 尼木县| 类乌齐县| 通州区| 辉县市| 华蓥市| 大方县| 石阡县| 平塘县| 汉阴县| 富宁县| 璧山县| 吴川市| 广州市| 烟台市| 伊春市| 峨眉山市| 宜君县| 定结县| 陕西省| 桐庐县| 崇礼县| 武隆县| 屯门区| 临颍县| 台北县| 福鼎市| 息烽县| 昭苏县| 介休市| 大余县|