LayoutManager 接口
介紹
接口LayoutManager 知道如何布局容器類,用於定義接口。
類的聲明
以下是聲明的java.awt.LayoutManager接口:
public interface LayoutManager
接口中的方法
S.N. | 方法和說明 |
---|---|
1 |
void addLayoutComponent(String name, Component comp) If the layout manager uses a per-component string, adds the component comp to the layout, associating it with the string specified by name. |
2 |
void layoutContainer(Container parent) Lays out the specified container. |
3 |
Dimension minimumLayoutSize(Container parent) Calculates the minimum size dimensions for the specified container, given the components it contains. |
4 |
Dimension preferredLayoutSize(Container parent) Calculates the preferred size dimensions for the specified container, given the components it contains. |
5 |
void removeLayoutComponent(Component comp) Removes the specified component from the layout. |