使用布局代替组件

时间:2015-07-28 18:19:31

标签: java swing awt layout-manager border-layout

我想创建一个主窗口框架,其中BorderLayout包含其他布局作为其组件。

如何向我的FlowLayout BorderLayout位置添加NORTH

1 个答案:

答案 0 :(得分:2)

这是一个向您展示的小程序:

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.LineBorder;
    public class LayoutExample {
        public static void main (String[] args) {
            JFrame frame = new JFrame("Frame with BorderLayout");
            frame.setLayout(new BorderLayout());
            JPanel flow = new JPanel();
            JLabel label = new JLabel("This is a flowlayout.");
            flow.setBorder(new LineBorder(Color.BLACK));
            flow.setLayout(new FlowLayout());
            flow.add(label);

            frame.add(flow, BorderLayout.NORTH);
            frame.setSize(300,300);
            frame.setVisible(true);
       } 
    }

最后看起来如何:

enter image description here