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.


上一篇: AWT 佈局(Layouts) 下一篇: LayoutManager2 介面