📜  SWING-容器

📅  最后修改于: 2020-11-10 04:49:11             🧑  作者: Mango


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

  • Container的子类称为Container。例如,JPanel,JFrame和JWindow。

  • 容器只能向其添加一个组件。

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

SWING集装箱

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

Sr.No. Container & Description
1 Panel

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

2 Frame

A JFrame is a top-level window with a title and a border.

3 Window

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