您的位置:首页 > 编程语言 > Delphi

Delphi 常用组件继承关系

2013-11-01 00:45 483 查看
运行期可视化组件:

1、Form窗体:

TForm = class(TCustomForm)

TCustomForm = class(TScrollingWinControl) 

TScrollingWinControl = class(TWinControl)

TWinControl = class(TControl)

TControl = class(TComponent)

TComponent = class(TPersistent, IInterface, IInterfaceComponentReference)

Persistent = class(TObject)

TObject = class

2、Edit:

TEdit = class(TCustomEdit)

TCustomEdit = class(TWinControl)

TWinControl = class(TControl)

TControl = class(TComponent)

TComponent = class(TPersistent, IInterface, IInterfaceComponentReference)

TPersistent = class(TObject)

TObject = class

3、Button:

TButton = class(TButtonControl)

TButtonControl = class(TWinControl)

.

.

.

4、CheckBox:

TCheckBox = class(TCustomCheckBox)

TCustomCheckBox = class(TButtonControl)

.

.

.

5、Label:

TLabel = class(TCustomLabel)

TCustomLabel = class(TGraphicControl)

TGraphicControl = class(TControl)

.
.
.

6、Panel:

TPanel = class(TCustomPanel)

TCustomPanel = class(TCustomControl)

TCustomControl = class(TWinControl)

.

.

.

7、Image:

TImage = class(TGraphicControl)

TGraphicControl = class(TControl)

.
.
.

运行期不可视组件:

1、Timer:

TTimer = class(TComponent)

.

.

.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: