Swing LayoutManager介面


LayoutManager介面用於如何佈置容器的類定義介面。

類宣告

以下是java.awt.LayoutManager介面的宣告 -

public interface LayoutManager

介面方法

編號 方法 描述
1 void addLayoutComponent(String name, Component comp) 如果布局管理器使用每個元件的字串,則將元件comp新增到布局中,並將其與name指定的字串相關聯。
2 void layoutContainer(Container parent) 指定布置的容器。
3 Dimension minimumLayoutSize(Container parent) 在給定容器所包含的元件的情況下,計算指定容器的最小值。
4 Dimension preferredLayoutSize(Container parent) 在給定包含的元件的情況下,計算指定容器的首選大小值。
5 void removeLayoutComponent(Component comp) 從布局中刪除指定的元件。