Swing的BoxLayout示例

说明

BoxLayout类以堆叠的方式排列组件,以将它们彼此叠放或成排放置。它比FlowLayout提供了灵活性。以下示例展示了 BoxLayout 的使用。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;

public class SwingTester {
   public static void main(String[] args) {
      createWindow();
   }

   private static void createWindow() {    
      JFrame frame = new JFrame("一点教程网:Swing Tester");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      createUI(frame);
      frame.setSize(560, 200);      
      frame.setLocationRelativeTo(null);  
      frame.setVisible(true);
   }

   private static void createUI(final JFrame frame){  
      JPanel panel = new JPanel();
      LayoutManager layout = new BoxLayout(panel, BoxLayout.PAGE_AXIS);
      panel.setLayout(layout);       
      
      panel.add(new JButton("One"));
      panel.add(new JButton("Two")); 
      panel.add(new JButton("Three"));
      panel.add(new JButton("Four"));         
      frame.getContentPane().add(panel, BorderLayout.CENTER);    
   }
}

执行效果如下:

热门文章

优秀文章