📜  AWT容器

📅  最后修改于: 2020-11-18 07:48:43             🧑  作者: Mango


容器是AWT GUI组件不可或缺的一部分。容器提供了可以放置组件的空间。 AWT中的容器本身就是组件,它添加了向其自身添加组件的功能。以下是值得注意的要点。

  • 容器的子类称为容器。例如面板,框架和窗口。

  • 容器只能向其自身添加组件。

  • 每个容器中都有一个默认布局,可以使用setLayout方法覆盖它。

Sr. No. Container & Description
1

Container

It is a generic container object which can contain other AWT components.

AWT UI元素:

以下是使用AWT设计GUI时常用容器的列表。

Sr. No. Container & Description
1

Panel

Panel is the simplest container. It provides space in which any other component can be placed, including other panels.

2

Frame

A Frame is a top-level window with a title and a border

3

Window

A Window object is a top-level window with no borders and no menubar.