AWT LayoutManager类
1 什么是Java AWT LayoutManager
接口LayoutManager用于为知道如何布局 Container 的类定义接口。
2 Java AWT LayoutManager的语法
public interface LayoutManager
3 Java AWT LayoutManager的方法
方法 | 描述 |
---|---|
void addLayoutComponent(String name, Component comp) | 如果布局管理器使用每个组件的字符串,则将组件组合添加到布局中,并将其与名称指定的字符串相关联。 |
void layoutContainer(Container parent) | 布置指定的容器。 |
Dimension minimumLayoutSize(Container parent) | 给定容器包含的组件,计算指定容器的最小尺寸。 |
Dimension preferredLayoutSize(Container parent) | 给定容器包含的组件,计算指定容器的首选大小尺寸。 |
void removeLayoutComponent(Component comp) | 从布局中移除指定的组件。 |
热门文章
优秀文章