Swing LayoutManager接口
LayoutManager接口知道如何布局容器類,用於定義接口。
類聲明
以下是聲明 java.awt.LayoutManager接口:
public interface LayoutManager
接口方法
S.N. | 方法 & 描述 |
---|---|
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) 刪除指定的組件布局。 |